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

github.com/bitfireAT/ical4android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicki Hirner <hirner@bitfire.at>2022-10-21 13:50:08 +0300
committerRicki Hirner <hirner@bitfire.at>2022-10-21 13:50:08 +0300
commitbbabc7187d7dcb738115592d33846e7b4fd01c17 (patch)
treee52548d2aa1def966a90f0113ced9bbf500bb1c1
parentfad57503609c314f0a808e43ba1ae8842e99fe1a (diff)
Update gradle, move package id from Manifest to build.gradleupdate-jtx-version-200040001
-rw-r--r--build.gradle4
-rw-r--r--src/main/AndroidManifest.xml3
2 files changed, 4 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index ccec49b..592ace8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -17,7 +17,7 @@ buildscript {
}
dependencies {
- classpath 'com.android.tools.build:gradle:7.3.0'
+ classpath 'com.android.tools.build:gradle:7.3.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:${versions.dokka}"
}
@@ -45,6 +45,8 @@ android {
buildConfigField "String", "version_ical4j", "\"${versions.ical4j}\""
}
+ namespace 'at.bitfire.ical4android'
+
compileOptions {
// ical4j >= 3.x uses the Java 8 Time API
coreLibraryDesugaringEnabled true
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 442d0ed..f4ef8d9 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -10,8 +10,7 @@
~ PURPOSE. See the GNU General Public License for more details.
-->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="at.bitfire.ical4android">
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<!-- read/write Android calendars -->
<uses-permission android:name="android.permission.READ_CALENDAR" />