From 42649951183486051b6ef2b08116f998eb15d5fa Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Wed, 17 May 2023 08:36:56 +0200 Subject: [PATCH] [android] convert help to compose Signed-off-by: Arnaud Vergnet --- android/build.gradle | 44 +++- android/gradle.properties | 2 +- android/res/layout-land/about.xml | 170 ------------ android/res/layout/about.xml | 242 ------------------ .../organicmaps/help/CopyrightFragment.java | 2 +- .../app/organicmaps/help/HelpActivity.java | 14 - .../src/app/organicmaps/help/HelpActivity.kt | 100 ++++++++ .../app/organicmaps/help/HelpFragment.java | 154 ----------- .../src/app/organicmaps/help/HelpHeader.kt | 165 ++++++++++++ .../src/app/organicmaps/help/HelpItemList.kt | 232 +++++++++++++++++ android/src/app/organicmaps/util/Colors.kt | 21 ++ android/src/app/organicmaps/util/Theme.kt | 113 ++++++++ 12 files changed, 673 insertions(+), 586 deletions(-) delete mode 100644 android/res/layout-land/about.xml delete mode 100644 android/res/layout/about.xml delete mode 100644 android/src/app/organicmaps/help/HelpActivity.java create mode 100644 android/src/app/organicmaps/help/HelpActivity.kt delete mode 100644 android/src/app/organicmaps/help/HelpFragment.java create mode 100644 android/src/app/organicmaps/help/HelpHeader.kt create mode 100644 android/src/app/organicmaps/help/HelpItemList.kt create mode 100644 android/src/app/organicmaps/util/Colors.kt create mode 100644 android/src/app/organicmaps/util/Theme.kt diff --git a/android/build.gradle b/android/build.gradle index 6cb3ae9771..56ecb66266 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -25,6 +25,10 @@ buildscript { // Add a parameter to force Firebase. ext.googleFirebaseServicesEnabled = project.hasProperty('firebase') ?: googleFirebaseServicesDefault + // See https://developer.android.com/jetpack/androidx/releases/compose-kotlin + // to see which kotlin version is compatible with compose + ext.kotlin_version = '1.8.21' + dependencies { classpath 'com.android.tools.build:gradle:8.1.0' @@ -45,6 +49,8 @@ buildscript { classpath('com.github.triplet.gradle:play-publisher:3.8.3') classpath('ru.cian:huawei-publish-gradle-plugin:1.4.0') + + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } @@ -65,6 +71,7 @@ if (googleFirebaseServicesEnabled) { } apply plugin: 'com.github.triplet.play' apply plugin: 'ru.cian.huawei-publish-gradle-plugin' +apply plugin: 'kotlin-android' dependencies { // Google Mobile Services @@ -82,10 +89,30 @@ dependencies { implementation 'com.google.firebase:firebase-crashlytics-ndk' } - // This line is added as a workaround for duplicate classes error caused by some outdated dependency: - // > A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable - // We don't use Kotlin, but some dependencies are actively using it. - implementation(platform('org.jetbrains.kotlin:kotlin-bom:1.8.21')) + // Kotlin + implementation 'androidx.core:core-ktx:1.10.1' + implementation(platform("org.jetbrains.kotlin:kotlin-bom:$kotlin_version")) + + // Dependencies for Jetpack Compose + // See https://developer.android.com/jetpack/compose/setup#setup-compose + def composeBom = platform('androidx.compose:compose-bom:2023.04.01') + implementation composeBom + androidTestImplementation composeBom + // Material Design 2 + implementation 'androidx.compose.material:material' + // Android Studio Preview support + implementation 'androidx.compose.ui:ui-tooling-preview' + debugImplementation 'androidx.compose.ui:ui-tooling' + // Optional - Integration with activities + implementation 'androidx.activity:activity-compose:1.7.1' + // Optional - Integration with ViewModels + implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.1' + // Optional - Integration with LiveData + implementation 'androidx.compose.runtime:runtime-livedata' + // Optional - Allows controlling status bar and navigation bar + implementation "com.google.accompanist:accompanist-systemuicontroller:0.31.2-alpha" + + implementation 'androidx.annotation:annotation:1.6.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' @@ -139,6 +166,15 @@ android { buildFeatures { dataBinding = true + compose true + } + + kotlinOptions { + jvmTarget = JavaVersion.VERSION_11 + } + + composeOptions { + kotlinCompilerExtensionVersion = "1.4.7" } // All properties are read from gradle.properties file compileSdkVersion propCompileSdkVersion.toInteger() diff --git a/android/gradle.properties b/android/gradle.properties index 36fd8e7034..4a522d8b1b 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -4,7 +4,7 @@ propCompileSdkVersion=33 propBuildToolsVersion=34.0.0 org.gradle.caching=true -org.gradle.jvmargs=-Xmx1024m -Xms256m +org.gradle.jvmargs=-Xmx2048m -Xms256m android.useAndroidX=true android.native.buildOutput=verbose android.defaults.buildfeatures.buildconfig=true diff --git a/android/res/layout-land/about.xml b/android/res/layout-land/about.xml deleted file mode 100644 index 429757d69b..0000000000 --- a/android/res/layout-land/about.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/android/res/layout/about.xml b/android/res/layout/about.xml deleted file mode 100644 index 3aa15b3025..0000000000 --- a/android/res/layout/about.xml +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - -