-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: enricocid <[email protected]>
- Loading branch information
Showing
4 changed files
with
82 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- Android 11 compatibility | ||
- Dependencies updates | ||
- Changes to recent setups dialog | ||
- Fix apply wallpaper progress bar | ||
|
||
Don't forget to visit weblate for translations! | ||
https://hosted.weblate.org/engage/vectorify-da-home/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- Compatibilità Android 11 | ||
- Aggiornamento dipendenze | ||
- Cambiamenti al dialog recenti | ||
- Corretto problema con barra di progresso durante l'applicazione degli sfondi | ||
|
||
Non dimenticare di visitare weblate se vuoi aiutare con le traduzioni! | ||
https://hosted.weblate.org/engage/vectorify-da-home/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,75 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
apply plugin: 'com.android.application' | ||
apply plugin: 'kotlin-android' | ||
apply plugin: 'kotlin-android-extensions' | ||
|
||
buildscript { | ||
ext.kotlin_version = '1.4.10' | ||
repositories { | ||
google() | ||
jcenter() | ||
android { | ||
compileSdkVersion 30 | ||
buildToolsVersion "30.0.2" | ||
defaultConfig { | ||
applicationId "com.iven.iconify" | ||
minSdkVersion 21 | ||
targetSdkVersion 30 | ||
versionCode 43 | ||
versionName "1.8.5" | ||
|
||
vectorDrawables.useSupportLibrary = true | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.6.2' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
|
||
// Configure only for each module that uses Java 8 | ||
// language features (either in its source code or | ||
// through dependencies). | ||
compileOptions { | ||
encoding = 'UTF-8' | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
|
||
// For Kotlin projects | ||
kotlinOptions { | ||
jvmTarget = "1.8" | ||
} | ||
|
||
packagingOptions { | ||
exclude 'META-INF/*' | ||
} | ||
|
||
applicationVariants.all { variant -> | ||
variant.resValue "string", "versionName", "v" + variant.versionName | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
jcenter() | ||
buildTypes { | ||
release { | ||
minifyEnabled true | ||
shrinkResources true | ||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
dependencies { | ||
// Kotlin | ||
//https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md | ||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" | ||
// Support | ||
//https://developer.android.com/jetpack/androidx/versions | ||
implementation 'androidx.core:core-ktx:1.3.2' | ||
implementation 'androidx.preference:preference-ktx:1.1.1' | ||
implementation 'androidx.activity:activity-ktx:1.1.0' | ||
implementation 'androidx.loader:loader:1.1.0' | ||
implementation 'androidx.recyclerview:recyclerview:1.1.0' | ||
implementation 'androidx.browser:browser:1.2.0' | ||
//https://github.com/material-components/material-components-android/releases | ||
implementation 'com.google.android.material:material:1.2.1' | ||
|
||
// Third-party | ||
//https://github.com/google/gson/blob/master/CHANGELOG.md | ||
implementation 'com.google.code.gson:gson:2.8.6' | ||
|
||
//https://github.com/afollestad/material-dialogs/releases | ||
implementation 'com.afollestad.material-dialogs:core:3.3.0' | ||
implementation 'com.afollestad.material-dialogs:color:3.3.0' | ||
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0' | ||
|
||
//https://github.com/beworker/edge-to-edge/blob/master/CHANGELOG.md | ||
implementation 'de.halfbit:edge-to-edge:0.10' | ||
} |