Skip to content

Commit

Permalink
Update dependencies and build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
cyb3rko committed Dec 6, 2022
1 parent d016f88 commit df0bbbf
Show file tree
Hide file tree
Showing 8 changed files with 227 additions and 154 deletions.
29 changes: 14 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ apply plugin: 'com.mikepenz.aboutlibraries.plugin'
apply plugin: 'kotlin-android'

android {
namespace 'com.cyb3rko.logviewerforopenhab'

compileSdk 33
defaultConfig {
applicationId 'com.cyb3rko.logviewerforopenhab'
minSdk 21
targetSdk 33
versionCode 21
versionName "2.4.0"
}
signingConfigs {
signingConf {
Properties properties = new Properties()
Expand All @@ -17,19 +27,9 @@ android {
}
}

compileSdk 33

defaultConfig {
applicationId "com.cyb3rko.logviewerforopenhab"
minSdk 21
targetSdk 33
versionCode 21
versionName "2.4.0"
}

buildTypes {
debug {
minifyEnabled false
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
Expand All @@ -56,7 +56,7 @@ android {
}

dependencies {
def navigation_version = "2.5.2"
def navigation_version = "2.5.3"

implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
Expand All @@ -66,11 +66,10 @@ dependencies {
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
implementation 'com.airbnb.android:lottie:4.0.0'
implementation 'com.airbnb.android:lottie:5.2.0'
implementation 'com.getkeepsafe.taptargetview:taptargetview:1.13.0'
implementation 'com.github.AppIntro:AppIntro:6.0.0'
implementation 'com.github.cyb3rko:about-icons:1.5.0'
implementation 'com.github.cyb3rko:about-icons:2.0.0'
implementation 'com.google.android.material:material:1.8.0-alpha03'
implementation 'com.google.android.play:core-ktx:1.8.1'
implementation 'com.google.firebase:firebase-analytics-ktx' // BOM versioning
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyb3rko.logviewerforopenhab">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ buildscript {
}

plugins {
id 'com.android.application' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
id 'com.android.application' version '7.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false
id 'com.mikepenz.aboutlibraries.plugin' version "$aboutLibsVersion" apply false
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ android.nonTransitiveRClass=true
##############################
# Dependency versions
##############################
aboutLibsVersion=10.4.0
aboutLibsVersion=10.5.2
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Oct 26 17:09:48 CET 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionSha256Sum=f6b8596b10cce501591e92f229816aa4046424f3b24d771751b06779d58c8ec4
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit df0bbbf

Please sign in to comment.