forked from erdo/android-fore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
94 lines (77 loc) · 3.18 KB
/
build.gradle.kts
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
import co.early.fore.Shared
import co.early.fore.Shared.BuildTypes
plugins {
id("com.android.application")
kotlin("android")
kotlin("android.extensions")
kotlin("kapt")
}
val appId = "foo.bar.example.forereactiveuikt"
fun getTestBuildType(): String {
return project.properties["testBuildType"] as String? ?: BuildTypes.DEFAULT
}
println("[$appId testBuildType:${getTestBuildType()}]")
android {
compileOptions {
sourceCompatibility = Shared.Android.javaVersion
targetCompatibility = Shared.Android.javaVersion
}
compileSdk = Shared.Android.compileSdk
defaultConfig {
applicationId = appId
minSdk = Shared.Android.minSdk
targetSdk = Shared.Android.targetSdk
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
testBuildType = getTestBuildType()
}
signingConfigs {
create(BuildTypes.RELEASE) {
// keytool -genkey -v -keystore debug.fake_keystore -storetype PKCS12 -alias android -storepass android -keypass android -keyalg RSA -keysize 2048 -validity 20000 -dname "cn=Unknown, ou=Unknown, o=Unknown, c=Unknown"
storeFile = file("../keystore/debug.fake_keystore")
storePassword = "android"
keyAlias = "android"
keyPassword = "android"
}
}
buildTypes {
getByName(BuildTypes.DEBUG) {
isMinifyEnabled = false
}
getByName(BuildTypes.RELEASE) {
isMinifyEnabled = true
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "../proguard-example-app.pro")
signingConfig = signingConfigs.getByName(BuildTypes.RELEASE)
}
}
lint {
abortOnError = true
lintConfig = File(project.rootDir, "lint-example-apps.xml")
}
}
repositories {
mavenCentral()
google()
}
dependencies {
if (Shared.Publish.use_published_version) {
implementation("co.early.fore:fore-kt-android-core:${Shared.Publish.published_fore_version_for_examples}")
} else {
implementation(project(":fore-kt-android-core"))
}
implementation(project(":helpers"))
implementation("androidx.appcompat:appcompat:${Shared.Versions.appcompat}")
implementation("androidx.constraintlayout:constraintlayout:${Shared.Versions.constraintlayout}")
testImplementation("junit:junit:${Shared.Versions.junit}")
testImplementation("io.mockk:mockk:${Shared.Versions.mockk}")
androidTestImplementation("io.mockk:mockk-android:${Shared.Versions.mockk}")
androidTestImplementation("androidx.test:core:${Shared.Versions.androidxtest}")
androidTestImplementation("androidx.test:runner:${Shared.Versions.androidxtest}")
androidTestImplementation("androidx.test:rules:${Shared.Versions.androidxtest}")
androidTestImplementation("androidx.test.ext:junit-ktx:${Shared.Versions.androidxjunit}")
androidTestImplementation("androidx.annotation:annotation:${Shared.Versions.annotation}")
androidTestImplementation("androidx.test.espresso:espresso-core:${Shared.Versions.espresso_core}") {
exclude(group = "com.android.support", module = "support-annotations")
}
}