summaryrefslogtreecommitdiff
path: root/wallet
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-05-16 16:26:36 +0200
committerFlorian Dold <florian@dold.me>2022-05-16 16:26:36 +0200
commit22e5e8034d2891f04568e724baa8b5c95660b897 (patch)
treeea8c756f38958609e54e6c45deff508b9df15615 /wallet
parentd32573aad045c76c6ae75269eaa6591ce6fb4ae9 (diff)
downloadtaler-android-22e5e8034d2891f04568e724baa8b5c95660b897.tar.gz
taler-android-22e5e8034d2891f04568e724baa8b5c95660b897.tar.bz2
taler-android-22e5e8034d2891f04568e724baa8b5c95660b897.zip
-upgrade gradle
Diffstat (limited to 'wallet')
-rw-r--r--wallet/build.gradle17
-rw-r--r--wallet/src/main/AndroidManifest.xml3
2 files changed, 11 insertions, 9 deletions
diff --git a/wallet/build.gradle b/wallet/build.gradle
index 4bc22b9..2aaea01 100644
--- a/wallet/build.gradle
+++ b/wallet/build.gradle
@@ -99,19 +99,22 @@ android {
viewBinding true
compose true
}
-
packagingOptions {
- doNotStrip '**/*.so'
- exclude("META-INF/*.kotlin_module")
+ jniLibs {
+ keepDebugSymbols += ['**/*.so']
+ }
+ resources {
+ excludes += ['META-INF/*.kotlin_module']
+ }
}
- lintOptions {
+ lint {
abortOnError true
+ ignore 'WrongConstant'
ignoreWarnings false
- // TODO remove once com.google.android.material fixed this
- // https://github.com/material-components/material-components-android/issues/504
- ignore "WrongConstant"
}
+ namespace 'net.taler.wallet'
+
}
dependencies {
diff --git a/wallet/src/main/AndroidManifest.xml b/wallet/src/main/AndroidManifest.xml
index 963032c..285908a 100644
--- a/wallet/src/main/AndroidManifest.xml
+++ b/wallet/src/main/AndroidManifest.xml
@@ -15,8 +15,7 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- package="net.taler.wallet">
+ xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />