Skip to content

Commit

Permalink
Removed versionCode and versionName from manifest as sich values are …
Browse files Browse the repository at this point in the history
…handled by Gradle at build time
  • Loading branch information
Alberto Geniola committed Jun 13, 2021
1 parent 55121f8 commit 3ac1437
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ android {
applicationId "com.albertogeniola.merossconf"
minSdkVersion 23
targetSdkVersion 30
versionCode 1
versionName "1.0"
versionCode 2
versionName "0.0.1-alpha1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 1 addition & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.albertogeniola.merossconf"
android:versionCode="20210613"
android:versionName="0.0.1-alpha1">
package="com.albertogeniola.merossconf">

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
Expand Down

0 comments on commit 3ac1437

Please sign in to comment.