Skip to content

Commit

Permalink
Reverted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
harshad1 committed Oct 24, 2023
1 parent 4ff91d3 commit 7683c3d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 4 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (enable_plugin_kotlin) {
apply plugin: 'kotlin-kapt'
}

rootProject.ext.version_minSdk = 20
rootProject.ext.version_minSdk = 16

// https://github.com/vsch/flexmark-java/releases
ext.version_library_flexmark = "0.42.14"
Expand Down Expand Up @@ -67,7 +67,7 @@ android {

buildTypes {
release {
minifyEnabled false
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down Expand Up @@ -134,6 +134,8 @@ dependencies {
exclude group: 'commons-beanutils', module: 'commons-beanutils'
}



// UI libs
implementation 'com.pixplicity.generate:library:1.1.8'
implementation 'com.github.AppIntro:AppIntro:6.2.0'
Expand Down
5 changes: 3 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,15 @@
*
* License of this file: Apache 2.0
* https://www.apache.org/licenses/LICENSE-2.0
*;
*
#########################################################*/
-->

<!-- Do NOT run auto format on this file -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="net.gsantner.markor">
package="net.gsantner.markor"
tools:targetApi="jelly_bean">

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
2 changes: 1 addition & 1 deletion app/thirdparty-lib-src/QuadFlask-colorpicker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android {
}
buildTypes {
release {
minifyEnabled true
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {

version_compileSdk = 33
version_buildTools = "33.0.0"
version_minSdk = 18
version_minSdk = 17
}

repositories {
Expand Down

0 comments on commit 7683c3d

Please sign in to comment.