Skip to content

Commit

Permalink
Making ButtonClicker dependent on Common/gpg
Browse files Browse the repository at this point in the history
Change-Id: I4c77dfc3afd1b4e38c16a495453758c0257b0b2e
  • Loading branch information
claywilkinson committed Jan 29, 2016
1 parent cec4729 commit e01a3fd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion samples-android/ButtonClicker/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
apply plugin: 'com.android.model.application'

evaluationDependsOn(':Common/gpg-sdk')

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

// stlport configuration ["c++_static", "c++_shared", "gnustl_static", "gnustl_shared"]
Expand All @@ -19,11 +21,20 @@ model {
}
}
android {
signingConfigs.with {
debug {
storeFile = file('/Users/wilkinsonclay/gswitch/automation-cpp-android-samples/configs/debug.keystore')
keyAlias = 'androiddebugkey'
keyPassword = 'android'
storePassword = 'android'
}
}

compileSdkVersion=23
buildToolsVersion="23.0.2"

defaultConfig.with {
applicationId="com.google.example.games.ButtonClicker"
applicationId= "com.google.clayton.play.bc"
minSdkVersion.apiLevel = 11
targetSdkVersion.apiLevel = 23
}
Expand Down

0 comments on commit e01a3fd

Please sign in to comment.