Skip to content

Commit 80fbed2

Browse files
committed
Release 0.2.6
1 parent a43e45f commit 80fbed2

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020

2121
targetSdk 34
2222
versionCode 15
23-
versionName "0.2.6-SNAPSHOT"
23+
versionName "0.2.6"
2424
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
2525
vectorDrawables.generatedDensities = []
2626
}
@@ -31,9 +31,6 @@ android {
3131
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
3232
}
3333
}
34-
lintOptions {
35-
checkReleaseBuilds false
36-
}
3734
sourceSets {
3835
main.java.srcDirs += 'libsrc'
3936
}
@@ -45,6 +42,9 @@ android {
4542
// targetCompatibility JavaVersion.VERSION_1_8
4643
}
4744
namespace 'org.exbin.bined.editor.android'
45+
lint {
46+
checkReleaseBuilds false
47+
}
4848
}
4949

5050
tasks.withType(JavaCompile).configureEach {

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '8.10.0' apply false
4-
id 'com.android.library' version '8.10.0' apply false
3+
id 'com.android.application' version '8.10.1' apply false
4+
id 'com.android.library' version '8.10.1' apply false
55
}
66

77
task clean(type: Delete) {

changes.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
0.2.6
1+
0.2.6 (2025-05-29)
22
- Added Chinese translation
33
- Added crude charset table support
44
- Bug fixes

file_picker/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ android {
1818

1919
targetSdk 34
2020
}
21-
lintOptions {
22-
checkReleaseBuilds false
23-
}
2421
buildTypes {
2522
release {
2623
minifyEnabled false
@@ -34,6 +31,9 @@ android {
3431
// sourceCompatibility JavaVersion.VERSION_1_8
3532
// targetCompatibility JavaVersion.VERSION_1_8
3633
}
34+
lint {
35+
checkReleaseBuilds false
36+
}
3737
}
3838

3939
tasks.withType(JavaCompile).configureEach {

0 commit comments

Comments
 (0)