Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions xbuild/src/gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'com.android.application' version '8.7.0' apply false
id 'com.android.library' version '8.7.0' apply false
id 'org.jetbrains.kotlin.android' version '2.1.0' apply false
}

task clean(type: Delete) {
Expand Down
14 changes: 7 additions & 7 deletions xbuild/src/gradle/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,14 @@ pub fn build(env: &BuildEnv, out: &Path) -> Result<()> {
id 'org.jetbrains.kotlin.android'
}}
android {{
namespace '{package}'
compileSdk {target_sdk}
namespace = '{package}'
compileSdk = {target_sdk}
defaultConfig {{
applicationId '{package}'
minSdk {min_sdk}
targetSdk {target_sdk}
versionCode {version_code}
versionName '{version_name}'
applicationId = '{package}'
minSdk = {min_sdk}
targetSdk = {target_sdk}
versionCode = {version_code}
versionName = '{version_name}'
}}
}}
dependencies {{
Expand Down
Loading