Skip to content

Commit e01a3fd

Browse files
committed
Making ButtonClicker dependent on Common/gpg
Change-Id: I4c77dfc3afd1b4e38c16a495453758c0257b0b2e
1 parent cec4729 commit e01a3fd

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

samples-android/ButtonClicker/build.gradle

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
apply plugin: 'com.android.model.application'
22

3+
evaluationDependsOn(':Common/gpg-sdk')
4+
35
def gpg_cpp_path = file(project(':Common/gpg-sdk').projectDir).absolutePath + "/gpg-cpp-sdk/android"
46

57
// stlport configuration ["c++_static", "c++_shared", "gnustl_static", "gnustl_shared"]
@@ -19,11 +21,20 @@ model {
1921
}
2022
}
2123
android {
24+
signingConfigs.with {
25+
debug {
26+
storeFile = file('/Users/wilkinsonclay/gswitch/automation-cpp-android-samples/configs/debug.keystore')
27+
keyAlias = 'androiddebugkey'
28+
keyPassword = 'android'
29+
storePassword = 'android'
30+
}
31+
}
32+
2233
compileSdkVersion=23
2334
buildToolsVersion="23.0.2"
2435

2536
defaultConfig.with {
26-
applicationId="com.google.example.games.ButtonClicker"
37+
applicationId= "com.google.clayton.play.bc"
2738
minSdkVersion.apiLevel = 11
2839
targetSdkVersion.apiLevel = 23
2940
}

0 commit comments

Comments
 (0)