- Remove -v13 and -v4 dependencies on wearable side - Verify phone is set to compile on API 19 and wearable on 20 - Replace NotificationCompat in wearable side since it uses API 20 - Move ElizaChat code to Application directory Bug: 15809453 Change-Id: Ib75e7894505f82e5b4d8591b4dfa91a3de8e0329
35 lines
719 B
Groovy
35 lines
719 B
Groovy
apply plugin: 'android'
|
|
|
|
android {
|
|
compileSdkVersion 18
|
|
buildToolsVersion '20'
|
|
|
|
defaultConfig {
|
|
minSdkVersion 18
|
|
targetSdkVersion 19
|
|
versionCode 1
|
|
versionName '1.0'
|
|
}
|
|
|
|
signingConfigs {
|
|
release {
|
|
keyAlias 'androiddebugkey'
|
|
keyPassword 'android'
|
|
storeFile file('$rootDir/../../debug.keystore')
|
|
storePassword 'android'
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
runProguard false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
wearApp project(':Wearable')
|
|
}
|