Move version name and version code from Manifest to build.gradle

This commit is contained in:
Apostolis Papadimitriou 2018-03-22 11:52:05 +02:00 committed by TwistedUmbrella
parent d79748cb3e
commit b58aaac5c0
2 changed files with 7 additions and 6 deletions

View File

@ -8,6 +8,9 @@ android {
applicationId "com.reicast.emulator"
minSdkVersion 9
targetSdkVersion 21
versionCode="7"
versionName="r7"
vectorDrawables.useSupportLibrary = true
ndk {
moduleName "dc"
@ -60,4 +63,4 @@ dependencies {
exclude module: 'junit'
}
compile fileTree(include: ['*.jar'], dir: 'libs')
}
}

View File

@ -1,8 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.reicast.emulator"
android:versionCode="7"
android:versionName="r7" >
package="com.reicast.emulator">
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
@ -137,4 +135,4 @@
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
</application>
</manifest>
</manifest>