Skip to content

Commit

Permalink
' -> ""
Browse files Browse the repository at this point in the history
  • Loading branch information
0xh3rman committed Jan 20, 2024
1 parent 81299c7 commit ed8dd2b
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 28 deletions.
50 changes: 25 additions & 25 deletions gemstone/tests/android/GemTest/app/build.gradle
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -36,25 +36,25 @@ android {
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
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}"
}
}
}
Expand All @@ -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 {
Expand Down
6 changes: 3 additions & 3 deletions gemstone/tests/android/GemTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit ed8dd2b

Please sign in to comment.