File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1
1
apply plugin : ' java'
2
2
3
+ // noinspection GroovyUnusedAssignment
3
4
sourceCompatibility = 1.7
5
+ // noinspection GroovyUnusedAssignment
4
6
targetCompatibility = 1.7
5
7
6
8
configurations {
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ android {
15
15
versionCode globalConfiguration. getAt(" androidVersionCode" )
16
16
versionName globalConfiguration. getAt(" androidVersionName" )
17
17
testInstrumentationRunner globalConfiguration. getAt(" testInstrumentationRunner" )
18
+ testApplicationId globalConfiguration. getAt(" testApplicationId" )
18
19
}
19
20
20
21
compileOptions {
@@ -37,6 +38,21 @@ android {
37
38
disable ' IconDensities' // For testing purpose. This is safe to remove.
38
39
disable ' IconMissingDensityFolder' // For testing purpose. This is safe to remove.
39
40
}
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
+ }
40
56
}
41
57
42
58
dependencies {
You can’t perform that action at this time.
0 commit comments