forked from shmykelsa/AAAD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
112 lines (94 loc) · 4.01 KB
/
Copy pathbuild.gradle
File metadata and controls
112 lines (94 loc) · 4.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'com.google.gms.google-services'
}
allprojects {
repositories {
maven {
url 'https://jitpack.io'
}
mavenCentral()
}
}
android {
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/notice.txt'
exclude 'META-INF/ASL2.0'
exclude("META-INF/*.kotlin_module")
}
def localProperties = new Properties()
localProperties.load(new FileInputStream(rootProject.file("local.properties")))
buildFeatures {
viewBinding true
}
signingConfigs {
nuova {
storeFile file(localProperties['STORELOCATION'])
storePassword localProperties['STOREPASSWORD']
keyAlias 'key3'
keyPassword localProperties['KEYPASSWORD']
}
}
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
localProperties.load(new FileInputStream(rootProject.file("local.properties")))
applicationId "sksa.aa.customapps"
minSdkVersion 23
targetSdkVersion 30
versionCode 7
versionName "1.4"
signingConfig signingConfigs.'nuova'
setProperty("archivesBaseName","AAAD-" + versionName)
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "String", "PAYPAL_ID" , localProperties['PAYPAL_ID']
buildConfigField "String", "PAYPAL_ID_PROMO", localProperties['PAYPAL_ID_PROMO']
buildConfigField "String", "FIREBASE_INSTANCE", localProperties['FIREBASE_INSTANCE']
buildConfigField "String", "RETURN_URL", localProperties['RETURN_URL']
buildConfigField "String", "AAPASSENGER_LINK", localProperties['AAPASSENGER_LINK']
buildConfigField "String", "CARSTREAM205_LINK", localProperties['CARSTREAM205_LINK']
buildConfigField "String", "CARSTREAM204_LINK", localProperties['CARSTREAM204_LINK']
buildConfigField "String", "CARSTREAM202_LINK", localProperties['CARSTREAM202_LINK']
buildConfigField "String", "AAMP_LINK", localProperties['AAMP_LINK']
buildConfigField "String", "AAMIRROR_LINK", localProperties['AAMIRROR_LINK']
buildConfigField "String", "AAWIDGETS_LINK", localProperties['AAWIDGETS_LINK']
buildConfigField "String", "AASTREAM_LINK", localProperties['AASTREAM_LINK']
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.firebase:firebase-database:19.7.0'
implementation 'org.jsoup:jsoup:1.13.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.32"
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'com.android.volley:volley:1.2.0'
implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.2'
implementation 'commons-net:commons-net:3.6'
implementation 'io.github.kaustubhpatange:paypal-checkout:1.4'
implementation 'com.github.iGio90:BottomDialogs:master-SNAPSHOT'
implementation 'org.apache.httpcomponents:httpclient:4.5.6'
api 'org.apache.httpcomponents:httpcore:4.4.10'
api 'org.apache.httpcomponents:httpmime:4.5.6'
implementation group: 'commons-io', name: 'commons-io', version: '2.6'
implementation 'com.github.blikoon:QRCodeScanner:0.1.2'
}