Skip to content

Commit

Permalink
Upgrade gradle and fix gradlew executable not working in Unix env
Browse files Browse the repository at this point in the history
Signed-off-by: Calin Neamtu <[email protected]>
  • Loading branch information
nilac8991 committed Nov 17, 2022
1 parent 2507213 commit 03893f5
Show file tree
Hide file tree
Showing 4 changed files with 195 additions and 176 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

buildFeatures {
viewBinding true
}
}

dependencies {
Expand All @@ -29,6 +33,8 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"

implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.2'
classpath 'com.android.tools.build:gradle:7.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
6 changes: 3 additions & 3 deletions datawedgeconfigurator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
defaultConfig {
minSdkVersion 19
targetSdkVersion 31
versionCode 171
versionName "1.7.1"
versionCode 172
versionName "1.7.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}
Expand All @@ -28,7 +28,7 @@ project.afterEvaluate {
release(MavenPublication) {
groupId = 'com.zebra.jamesswinton'
artifactId = 'datawedgewrapper-lib'
version = '1.7.1'
version = '1.7.2'

afterEvaluate {
from components.release
Expand Down
Loading

0 comments on commit 03893f5

Please sign in to comment.