diff --git a/app/build.gradle b/app/build.gradle index 669eff0..8da407e 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -6,7 +6,11 @@ def playStore = false def materialVersion = '1.6.1' android { - compileSdk 35 + namespace 'org.exbin.bined.editor.android' + compileSdk { + version = release(35) + } + defaultConfig { applicationId "org.exbin.bined.editor.android" @@ -19,11 +23,12 @@ android { } targetSdk 35 - versionCode 17 - versionName "0.2.8" + versionCode 18 + versionName "0.2.9-SNAPSHOT" testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' vectorDrawables.generatedDensities = [] } + buildTypes { release { minifyEnabled true @@ -31,9 +36,11 @@ android { proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } + sourceSets { main.java.srcDirs += 'libsrc' } + compileOptions { // Flag to enable support for the new language APIs // coreLibraryDesugaringEnabled true @@ -41,7 +48,6 @@ android { // sourceCompatibility JavaVersion.VERSION_1_8 // targetCompatibility JavaVersion.VERSION_1_8 } - namespace 'org.exbin.bined.editor.android' lint { checkReleaseBuilds false } @@ -59,7 +65,7 @@ dependencies { implementation "com.google.android.material:material:${materialVersion}" // coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3' implementation 'androidx.preference:preference:1.2.1' - implementation 'net.java.dev.jna:jna:5.18.0@aar' + implementation 'net.java.dev.jna:jna:5.18.1@aar' implementation project(':file_picker') // implementation 'org.exbin.bined:bined-core:0.3.0-SNAPSHOT' // implementation 'org.exbin.bined:bined-operation:0.3.0-SNAPSHOT' diff --git a/build.gradle b/build.gradle index e5259fc..67e1945 100644 --- a/build.gradle +++ b/build.gradle @@ -4,6 +4,6 @@ plugins { id 'com.android.library' version '8.13.0' apply false } -task clean(type: Delete) { - delete rootProject.buildDir +tasks.register('clean', Delete) { + delete rootProject.layout.buildDirectory } diff --git a/changes.txt b/changes.txt index 76ed7d0..2f2a1c6 100644 --- a/changes.txt +++ b/changes.txt @@ -1,3 +1,5 @@ +0.2.9 + 0.2.8 (2025-10-18) - Added go-to dialog / go-to relative position - Bug fixes diff --git a/settings.gradle b/settings.gradle index ac3de88..5236923 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,6 +1,12 @@ pluginManagement { repositories { - google() + google { + content { + includeGroupByRegex("com\\.android.*") + includeGroupByRegex("com\\.google.*") + includeGroupByRegex("androidx.*") + } + } mavenCentral() gradlePluginPortal() }