Skip to content

Commit

Permalink
CustomGauge updated
Browse files Browse the repository at this point in the history
  • Loading branch information
uholeschak committed Jan 3, 2025
1 parent d3dd700 commit 1c23953
Showing 1 changed file with 29 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
diff --git a/CustomGauge/build.gradle b/CustomGauge/build.gradle
index 43357d5..4a4bad7 100644
index 43357d5..a00ce6f 100644
--- a/CustomGauge/build.gradle
+++ b/CustomGauge/build.gradle
@@ -25,11 +25,11 @@ ext {
}

android {
- compileSdkVersion 28
+ compileSdkVersion 33
+ compileSdkVersion 34

defaultConfig {
- minSdkVersion 15
- targetSdkVersion 28
+ minSdkVersion 19
+ targetSdkVersion 33
+ minSdkVersion 21
+ targetSdkVersion 34
versionCode 4
versionName "1.0.4"
}
Expand Down Expand Up @@ -49,22 +49,22 @@ index 9913a85..e2718d6 100644
mPaint = new Paint();
mPaint.setColor(mStrokeColor);
diff --git a/CustomGaugeExample/build.gradle b/CustomGaugeExample/build.gradle
index 12e72b7..c1ddabf 100644
index 12e72b7..6fc074f 100644
--- a/CustomGaugeExample/build.gradle
+++ b/CustomGaugeExample/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'

android {
- compileSdkVersion 28
+ compileSdkVersion 33
+ compileSdkVersion 34

defaultConfig {
applicationId "pl.pawelkleczkowskicustomgauge"
- minSdkVersion 15
- targetSdkVersion 28
+ minSdkVersion 19
+ targetSdkVersion 33
+ minSdkVersion 21
+ targetSdkVersion 34
versionCode 4
versionName "1.0.4"
}
Expand Down Expand Up @@ -104,10 +104,29 @@ index e48d945..fc31819 100644
android:layout_width="match_parent"
android:layout_height="wrap_content"
diff --git a/build.gradle b/build.gradle
index cef47c5..8572e31 100644
index cef47c5..db8765a 100644
--- a/build.gradle
+++ b/build.gradle
@@ -25,3 +25,7 @@ allprojects {
@@ -4,6 +4,9 @@ buildscript {
repositories {
jcenter()
google()
+ mavenCentral()
+ maven { url 'https://plugins.gradle.org/m2/' }
+ maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
@@ -19,9 +22,16 @@ allprojects {
repositories {
jcenter()
google()
+ mavenCentral()
+ maven { url 'https://plugins.gradle.org/m2/' }
+ maven { url 'https://groovy.jfrog.io/artifactory/libs-release/' }
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
Expand Down

0 comments on commit 1c23953

Please sign in to comment.