mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
Ignore "version code unused" lint warning
The value is actually read from gradle by getVersionCodeFromManifest().
This commit is contained in:
parent
22f44dffa5
commit
a0881ca8c8
2 changed files with 4 additions and 2 deletions
|
@ -26,7 +26,7 @@ android {
|
|||
compileSdkVersion 19
|
||||
buildToolsVersion "19.0.3"
|
||||
|
||||
defaultConfig{
|
||||
defaultConfig {
|
||||
versionCode getVersionCodeFromManifest()
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.nutomic.syncthingandroid"
|
||||
android:versionCode="2"
|
||||
android:versionName="0.2.0" >
|
||||
android:versionName="0.2.0"
|
||||
tools:ignore="GradleOverrides" >
|
||||
|
||||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
|
||||
|
||||
|
|
Loading…
Reference in a new issue