Skip to content

Commit c514e05

Browse files
committed
Attach debug.keystore and setup build.gradle to use this configuration.
1 parent d26d47f commit c514e05

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

buildsystem/debug.keystore

1.24 KB
Binary file not shown.

domain/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
apply plugin: 'java'
22

3+
//noinspection GroovyUnusedAssignment
34
sourceCompatibility = 1.7
5+
//noinspection GroovyUnusedAssignment
46
targetCompatibility = 1.7
57

68
configurations {

presentation/build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ android {
1515
versionCode globalConfiguration.getAt("androidVersionCode")
1616
versionName globalConfiguration.getAt("androidVersionName")
1717
testInstrumentationRunner globalConfiguration.getAt("testInstrumentationRunner")
18+
testApplicationId globalConfiguration.getAt("testApplicationId")
1819
}
1920

2021
compileOptions {
@@ -37,6 +38,21 @@ android {
3738
disable 'IconDensities' //For testing purpose. This is safe to remove.
3839
disable 'IconMissingDensityFolder' //For testing purpose. This is safe to remove.
3940
}
41+
42+
signingConfigs {
43+
debug {
44+
storeFile file('../buildsystem/debug.keystore')
45+
storePassword 'android'
46+
keyAlias 'androiddebugkey'
47+
keyPassword 'android'
48+
}
49+
}
50+
51+
buildTypes {
52+
debug {
53+
signingConfig signingConfigs.debug
54+
}
55+
}
4056
}
4157

4258
dependencies {

0 commit comments

Comments
 (0)