Skip to content

Commit

Permalink
v1.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
William Seemann committed Feb 15, 2021
1 parent a39da5e commit c019b93
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
19 changes: 14 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,28 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
signingConfigs {
create("releaseConfig") {
storeFile file('/Users/wseemann/Downloads/keystore')
storePassword 'xxxxxxxxXX'
keyAlias 'mykey'
keyPassword 'xxxxxxxxXX'
}
}
compileSdkVersion 30

defaultConfig {
applicationId "wseemann.media.romote"
minSdkVersion 21
targetSdkVersion 30
versionCode 20
versionName "1.0.20"
versionCode 21
versionName "1.0.21"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
getByName("release") {
signingConfig = signingConfigs.getByName("releaseConfig")
minifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
sourceSets {
Expand Down
Binary file added app/release/RoMote-1.0.21.apk
Binary file not shown.
4 changes: 4 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.VIBRATE" />

<queries>
<package android:name="wseemann.media.romote.audio" />
</queries>

<application
android:name="wseemann.media.romote.RomoteApplication"
android:usesCleartextTraffic="true"
Expand Down

0 comments on commit c019b93

Please sign in to comment.