Skip to content

Commit

Permalink
Bump to 1.8.5
Browse files Browse the repository at this point in the history
Signed-off-by: enricocid <[email protected]>
  • Loading branch information
enricocid committed Oct 28, 2020
1 parent 9c6934b commit e688a68
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 19 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Credits](https://img.shields.io/static/v1?label=Contributors&message=many&color=81d4fa)](https://github.com/enricocid/VectorifyDaHome/blob/master/Credits.md)

[![API](https://img.shields.io/static/v1?label=API&message=21&color=a5d6a7)](https://developer.android.com/about/versions/android-5.0.html)
[![TAG](https://img.shields.io/static/v1?label=Tag&message=v1.8.4&color=ffe082)](https://github.com/enricocid/VectorifyDaHome/releases/tag/v1.8.4)
[![TAG](https://img.shields.io/static/v1?label=Tag&message=v1.8.4&color=ffe082)](https://github.com/enricocid/VectorifyDaHome/releases/tag/v1.8.5)

<a href="https://hosted.weblate.org/engage/vectorify-da-home/">
<img src="https://hosted.weblate.org/widgets/vectorify-da-home/-/287x66-white.png" />
Expand Down
7 changes: 7 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/43.txt
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/
7 changes: 7 additions & 0 deletions fastlane/metadata/android/it/changelogs/43.txt
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/
85 changes: 67 additions & 18 deletions project/app/build.gradle
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'
}

0 comments on commit e688a68

Please sign in to comment.