1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-14 02:59:05 +00:00

Move versionCode/versionName into build.gradle (instead of

AndroidManifest), because that's apparently how it should be done these
days.
This commit is contained in:
Greg Alexander 2020-12-29 00:18:29 -05:00
parent abfff92c92
commit 88455ed03d
2 changed files with 4 additions and 3 deletions

View File

@ -26,6 +26,9 @@ android {
applicationId "org.galexander.sshd"
minSdkVersion 17
targetSdkVersion 30
versionCode 24
versionName "24"
}
buildTypes {

View File

@ -1,8 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.galexander.sshd"
android:versionCode="24"
android:versionName="24">
package="org.galexander.sshd">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />