diff --git a/gemstone/tests/android/GemTest/app/build.gradle b/gemstone/tests/android/GemTest/app/build.gradle index dfdcd403..49b35c1d 100644 --- a/gemstone/tests/android/GemTest/app/build.gradle +++ b/gemstone/tests/android/GemTest/app/build.gradle @@ -1,24 +1,24 @@ plugins { - id 'com.android.application' - id 'org.jetbrains.kotlin.android' + id "com.android.application" + id "org.jetbrains.kotlin.android" } -apply plugin: 'org.mozilla.rust-android-gradle.rust-android' +apply plugin: "org.mozilla.rust-android-gradle.rust-android" cargo { prebuiltToolchains = true targetDirectory = "$rootDir/../../../../target" // workspace target folder module = "$rootDir/../../.." // Cargo.toml folder libname = "gemstone" - pythonCommand = 'python3' - profile = 'debug' + pythonCommand = "python3" + profile = "debug" targets = ["x86_64", "arm64", "arm", "x86"] extraCargoBuildArguments = ["--lib"] verbose = true } android { - namespace 'com.example.gemtest' + namespace "com.example.gemtest" compileSdk 34 defaultConfig { applicationId "com.example.gemtest" @@ -36,7 +36,7 @@ android { buildTypes { release { minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" } } compileOptions { @@ -44,17 +44,17 @@ android { targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { - jvmTarget = '1.8' + jvmTarget = "1.8" } buildFeatures { compose true } composeOptions { - kotlinCompilerExtensionVersion '1.5.1' + kotlinCompilerExtensionVersion "1.5.1" } packaging { resources { - excludes += '/META-INF/{AL2.0,LGPL2.1}' + excludes += "/META-INF/{AL2.0,LGPL2.1}" } } } @@ -63,21 +63,21 @@ dependencies { // uniffi needs jna implementation "net.java.dev.jna:jna:5.7.0@aar" - implementation 'androidx.core:core-ktx:1.12.0' - implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1' - implementation 'androidx.activity:activity-compose:1.7.0' - implementation platform('androidx.compose:compose-bom:2023.08.00') - implementation 'androidx.compose.ui:ui' - implementation 'androidx.compose.ui:ui-graphics' - implementation 'androidx.compose.ui:ui-tooling-preview' - implementation 'androidx.compose.material3:material3' - testImplementation 'junit:junit:4.13.2' - androidTestImplementation 'androidx.test.ext:junit:1.1.5' - androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' - androidTestImplementation platform('androidx.compose:compose-bom:2023.08.00') - androidTestImplementation 'androidx.compose.ui:ui-test-junit4' - debugImplementation 'androidx.compose.ui:ui-tooling' - debugImplementation 'androidx.compose.ui:ui-test-manifest' + implementation "androidx.core:core-ktx:1.12.0" + implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1" + implementation "androidx.activity:activity-compose:1.7.0" + implementation platform("androidx.compose:compose-bom:2023.08.00") + implementation "androidx.compose.ui:ui" + implementation "androidx.compose.ui:ui-graphics" + implementation "androidx.compose.ui:ui-tooling-preview" + implementation "androidx.compose.material3:material3" + testImplementation "junit:junit:4.13.2" + androidTestImplementation "androidx.test.ext:junit:1.1.5" + androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1" + androidTestImplementation platform("androidx.compose:compose-bom:2023.08.00") + androidTestImplementation "androidx.compose.ui:ui-test-junit4" + debugImplementation "androidx.compose.ui:ui-tooling" + debugImplementation "androidx.compose.ui:ui-test-manifest" } afterEvaluate { diff --git a/gemstone/tests/android/GemTest/build.gradle b/gemstone/tests/android/GemTest/build.gradle index a0a05c02..99161725 100644 --- a/gemstone/tests/android/GemTest/build.gradle +++ b/gemstone/tests/android/GemTest/build.gradle @@ -8,7 +8,7 @@ buildscript { } plugins { - id 'com.android.application' version '8.2.0' apply false - id 'org.jetbrains.kotlin.android' version '1.9.0' apply false - id "org.mozilla.rust-android-gradle.rust-android" version '0.9.3' + id "com.android.application" version "8.2.0" apply false + id "org.jetbrains.kotlin.android" version "1.9.0" apply false + id "org.mozilla.rust-android-gradle.rust-android" version "0.9.3" }