Skip to content

Commit

Permalink
rollback to 4.21
Browse files Browse the repository at this point in the history
  • Loading branch information
konradrenner committed Oct 6, 2023
1 parent aef0b5b commit f1014e5
Show file tree
Hide file tree
Showing 16 changed files with 75 additions and 111 deletions.
17 changes: 0 additions & 17 deletions .idea/deploymentTargetDropDown.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 16 additions & 17 deletions .idea/modules/app/kolabnotes-android.app.androidTest.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions .idea/modules/app/kolabnotes-android.app.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 9 additions & 8 deletions .idea/modules/app/kolabnotes-android.app.main.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 7 additions & 8 deletions .idea/modules/app/kolabnotes-android.app.unitTest.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

You can also have a look on the GitHub release page: https://github.com/konradrenner/kolabnotes-android/releases

## [5.0.1] - 2023-10-06
### Fixed
- Switched back to 4.2.1 sources because snyc is not working with Android 13

## [5.0.0] - 2023-04-27
### Fixed
- Compiled with Android 13 SDK
Expand Down
33 changes: 13 additions & 20 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,39 +1,32 @@
apply plugin: 'com.android.application'

android {
signingConfigs {
debug {
storeFile file('/home/koni/Entwicklung/Android KeyStore/android_keystore.jks')
}
}
compileSdk 33
buildToolsVersion '33.0.2'
namespace = "org.kore.kolabnotes.android"
compileSdkVersion 29
buildToolsVersion '29.0.3'

defaultConfig {
applicationId "org.kore.kolabnotes.android"
minSdk 29
targetSdk 33
versionCode 106
versionName '5.0.0'
minSdkVersion 16
targetSdkVersion 29
versionCode 107
versionName "5.0.1"

//Running test
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

packagingOptions {
resources {
excludes += ['META-INF/LICENSE.txt']
}
exclude "META-INF/LICENSE.txt"
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'org.kore.kolabnotes.android'
lint {

lintOptions {
checkReleaseBuilds false
}

}

dependencies {
Expand Down
Binary file removed app/debug/app-debug.aab
Binary file not shown.
Binary file modified app/release/app-release.aab
Binary file not shown.
Loading

0 comments on commit f1014e5

Please sign in to comment.