Move versionCode and versionName definitions to build.gradle

This commit is contained in:
str4d
2014-11-30 21:24:47 +00:00
parent af93725c01
commit f00a35ee09
2 changed files with 3 additions and 7 deletions

View File

@ -5,6 +5,8 @@ android {
compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION
defaultConfig {
versionCode 4745223
versionName '0.9.16-rc1'
minSdkVersion 9
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
}

View File

@ -1,17 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.i2p.android.router"
android:installLocation="auto"
android:versionCode="4745223"
android:versionName="0.9.16-rc1">
android:installLocation="auto">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application
android:icon="@drawable/ic_launcher_itoopie"
android:label="@string/app_name"