diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-12-31 20:57:38 +0530 |
---|---|---|
committer | Aditya Wasan <adityawasan55@gmail.com> | 2019-12-31 20:57:38 +0530 |
commit | d5a744bd37ec8c54d719552a813a82c636e43ed3 (patch) | |
tree | f2ebab86af9f0d0db41847a446309c952412b01d /app | |
parent | bfbbdecc0796fdd8e68b675e3fd8d26dd99a8d60 (diff) |
Prepare for new Play Store listing (#602)
* Gradle cleanup
* Update package name
* Remove release APK from git
This should have never been here
* Move package name to dependencies.gradle
* github: Setup caching for gradle
* Update Play Store art
* gradle: Use constraints API in place of deprecated force
* Update dependencies
* Raise minSdk to 23
* Target SDK 28 for now
External storage handling changes are atrocious to support in this codebase so we'll be holding out as far as we can.
* Revert "Opt into legacy external storage handling (#595)"
Not needed on SDK 28
This reverts commit 3f249e4bffffe0ba30e7546735c7fb4576918c69.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 13 | ||||
-rw-r--r-- | app/release/app-release.apk | bin | 3995966 -> 0 bytes | |||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 1 | ||||
-rw-r--r-- | app/src/main/ic_launcher-web.png | bin | 36235 -> 16541 bytes |
4 files changed, 5 insertions, 9 deletions
diff --git a/app/build.gradle b/app/build.gradle index 9666a547..50a9a67d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,14 +4,9 @@ */ plugins { id 'kotlin-android' - id 'kotlin-kapt' id 'kotlin-android-extensions' } -repositories { - maven { url 'https://jitpack.io' } -} - final def keystorePropertiesFile = rootProject.file 'keystore.properties' final def gitHash = { -> @@ -37,7 +32,7 @@ android { } defaultConfig { - applicationId 'com.zeapo.pwdstore' + applicationId versions.packageName } lintOptions { @@ -88,8 +83,10 @@ dependencies { implementation deps.androidx.constraint_layout implementation deps.androidx.documentfile implementation deps.androidx.preference - implementation (deps.androidx.recycler_view) { - force = true + constraints { + implementation(deps.androidx.recycler_view) { + because 'versions above 1.0.0 have an accessibility related bug that causes crashes' + } } implementation deps.androidx.material implementation deps.third_party.commons_io diff --git a/app/release/app-release.apk b/app/release/app-release.apk Binary files differdeleted file mode 100644 index 1b52df9a..00000000 --- a/app/release/app-release.apk +++ /dev/null diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 98b1b924..26fad727 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -19,7 +19,6 @@ android:allowBackup="false" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" - android:requestLegacyExternalStorage="true" android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> diff --git a/app/src/main/ic_launcher-web.png b/app/src/main/ic_launcher-web.png Binary files differindex f61a368b..8c5539c4 100644 --- a/app/src/main/ic_launcher-web.png +++ b/app/src/main/ic_launcher-web.png |