summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2017-03-28 11:28:47 -0400
committerJoey Grover <joeygrover@gmail.com>2017-03-28 11:28:47 -0400
commit80ac20cffef4cc37e28d2a4b58d5b44412401569 (patch)
treece2f75c0ad0887c75614e3f650e60358e9718ed6
parent2b61ec9f3150a112e7fd0e722bc9447c208752e1 (diff)
downloadsdl_android-80ac20cffef4cc37e28d2a4b58d5b44412401569.tar.gz
Correct gradle file
-rw-r--r--sdl_android/build.gradle9
1 files changed, 4 insertions, 5 deletions
diff --git a/sdl_android/build.gradle b/sdl_android/build.gradle
index 94c513380..e96332acc 100644
--- a/sdl_android/build.gradle
+++ b/sdl_android/build.gradle
@@ -1,14 +1,14 @@
-apply plugin: 'com.android.application'
+apply plugin: 'com.android.library'
android {
- compileSdkVersion 25
+ compileSdkVersion 19
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.smartdevicelink"
minSdkVersion 9
- targetSdkVersion 25
+ targetSdkVersion 19
versionCode 1
- versionName "1.0"
+ versionName "4.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
@@ -24,6 +24,5 @@ dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
- compile 'com.android.support:appcompat-v7:25.3.0'
testCompile 'junit:junit:4.12'
}