Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/news-android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid-Development <david-dev@live.de>2022-05-22 19:48:44 +0300
committerDavid Luhmer <david-dev@live.de>2022-05-22 19:48:44 +0300
commit6675c08e004c5441202f989f59211a4a1460e092 (patch)
tree68ee11054231a3eed86ff885bf3bb2916cf40511
parente1c51f505464c8ed9133efa9aaff3ad5a26c8095 (diff)
update to gradle 7.2.0
Signed-off-by: David Luhmer <david-dev@live.de>
-rw-r--r--News-Android-App/build.gradle1
-rw-r--r--News-Android-App/src/androidTest/AndroidManifest.xml17
-rw-r--r--News-Android-App/src/main/AndroidManifest.xml1
-rw-r--r--build.gradle2
4 files changed, 13 insertions, 8 deletions
diff --git a/News-Android-App/build.gradle b/News-Android-App/build.gradle
index 933b6e12..add7bb65 100644
--- a/News-Android-App/build.gradle
+++ b/News-Android-App/build.gradle
@@ -101,6 +101,7 @@ android {
disable 'MissingTranslation', 'ExtraTranslation', 'MissingQuantity', 'InconsistentArrays', 'TypographyEllipsis'
ignoreWarnings true
}
+ namespace 'de.luhmer.owncloudnewsreader'
}
diff --git a/News-Android-App/src/androidTest/AndroidManifest.xml b/News-Android-App/src/androidTest/AndroidManifest.xml
index fcfdf5a8..8d58876f 100644
--- a/News-Android-App/src/androidTest/AndroidManifest.xml
+++ b/News-Android-App/src/androidTest/AndroidManifest.xml
@@ -1,14 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:tools="http://schemas.android.com/tools"
- xmlns:android="http://schemas.android.com/apk/res/android"
- package="your.package.name">
+ xmlns:android="http://schemas.android.com/apk/res/android">
- <uses-sdk tools:overrideLibrary="android_libs.ub_uiautomator"/>
+ <uses-sdk tools:overrideLibrary="android_libs.ub_uiautomator" />
<application>
<!-- You don't need to include android:required="false" if your app's minSdkVersion is 28 or higher. -->
- <uses-library android:name="android.test.runner" android:required="false" />
- <uses-library android:name="android.test.base" android:required="false" />
- <uses-library android:name="android.test.mock" android:required="false" />
+ <uses-library
+ android:name="android.test.runner"
+ android:required="false" />
+ <uses-library
+ android:name="android.test.base"
+ android:required="false" />
+ <uses-library
+ android:name="android.test.mock"
+ android:required="false" />
</application>
</manifest> \ No newline at end of file
diff --git a/News-Android-App/src/main/AndroidManifest.xml b/News-Android-App/src/main/AndroidManifest.xml
index 840a99d4..4a09fc22 100644
--- a/News-Android-App/src/main/AndroidManifest.xml
+++ b/News-Android-App/src/main/AndroidManifest.xml
@@ -1,7 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
- package="de.luhmer.owncloudnewsreader"
android:installLocation="internalOnly">
<uses-permission android:name="android.permission.WAKE_LOCK" />
diff --git a/build.gradle b/build.gradle
index 4189901b..705da59d 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.1.3'
+ classpath 'com.android.tools.build:gradle:7.2.0'
}
}