diff options
author | Scott Jackson <daneren2005@gmail.com> | 2016-02-22 18:11:03 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2016-02-22 18:11:03 -0800 |
commit | 8fcc69026d6a6df3c2b867d1f0c1159caa6a5060 (patch) | |
tree | fe89a5f77f6567b9f4e07183621de1673c5e30ba /app | |
parent | f800e461529b0b56d899fe8480e905ecd873c2e5 (diff) | |
download | dsub-8fcc69026d6a6df3c2b867d1f0c1159caa6a5060.tar.gz dsub-8fcc69026d6a6df3c2b867d1f0c1159caa6a5060.tar.bz2 dsub-8fcc69026d6a6df3c2b867d1f0c1159caa6a5060.zip |
Update gradle to specify build name/version
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 4 | ||||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 9 |
2 files changed, 7 insertions, 6 deletions
diff --git a/app/build.gradle b/app/build.gradle index b5d4b900..5798ad5e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -8,11 +8,15 @@ android { applicationId "github.daneren2005.dsub" minSdkVersion 14 targetSdkVersion 22 + versionCode 174 + versionName '5.1.5' + setProperty("archivesBaseName", "DSub $versionName") } buildTypes { release { minifyEnabled true proguardFiles 'proguard.cfg' + zipAlignEnabled true } } diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 8060ce06..4293ba8e 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,10 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="github.daneren2005.dsub" - android:installLocation="internalOnly" - android:versionCode="174" - android:versionName="5.1.5"> - + android:installLocation="internalOnly"> + <instrumentation android:name="android.test.InstrumentationTestRunner" android:targetPackage="github.daneren2005.dsub" android:label="Tests" /> @@ -30,8 +28,7 @@ <uses-feature android:name="android.hardware.bluetooth" android:required="false" /> <uses-feature android:name="android.hardware.microphone" android:required="false" /> <uses-feature android:name="android.hardware.wifi" android:required="false" /> - - <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="22"/> + <uses-feature android:name="android.software.leanback" android:required="false"/> <supports-screens android:anyDensity="true" android:xlargeScreens="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true"/> |