Skip to content

Commit 899d6c5

Browse files
committedJul 26, 2020
update 1.5.3.
Signed-off-by: Anas Altair <anastr244@gmail.com>
1 parent 8eaac60 commit 899d6c5

8 files changed

+14
-10
lines changed
 

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ local.properties
55
.idea
66
.DS_Store
77
/build
8+
/release
89
/captures
10+
*.aab
11+
*.apk

‎app/build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ android {
1010
applicationId 'com.github.anastr.speedviewapp'
1111
minSdkVersion 14
1212
targetSdkVersion 29
13-
versionCode 1
14-
versionName "1.0"
13+
versionCode 2
14+
versionName "1.1"
1515
}
1616
buildTypes {
1717
release {
18-
minifyEnabled false
18+
minifyEnabled true
1919
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020
}
2121
}

‎app/src/main/res/layout/activity_awesome_speedometer.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@
1414

1515
<com.github.anastr.speedviewlib.AwesomeSpeedometer
1616
android:id="@+id/awesomeSpeedometer"
17-
android:layout_width="300dp"
17+
android:layout_width="wrap_content"
1818
android:layout_height="wrap_content"
19-
app:sv_speedometerWidth="75dp"
2019
app:sv_indicatorWidth="35dp"
2120
app:sv_speedometerColor="#ef3737"
2221
app:sv_trianglesColor="#25b9b4"

‎app/src/main/res/layout/activity_pointer.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<com.github.anastr.speedviewlib.PointerSpeedometer
1616
android:id="@+id/pointerSpeedometer"
17-
android:layout_width="300dp"
17+
android:layout_width="wrap_content"
1818
android:layout_height="wrap_content"
1919
android:layout_gravity="center_horizontal"
2020
app:sv_unitTextSize="15sp"

‎app/src/main/res/layout/activity_work_with_indicator.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<com.github.anastr.speedviewlib.SpeedView
1717
android:id="@+id/speedometer"
18-
android:layout_width="300dp"
18+
android:layout_width="wrap_content"
1919
android:layout_height="wrap_content"
2020
android:layout_gravity="center_horizontal"
2121
app:sv_speedTextSize="11sp"

‎app/src/main/res/layout/card_view.xml

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
android:layout_height="match_parent"
1414
android:padding="10dp"
1515
android:layout_gravity="center"
16+
app:sv_speedometerWidth="24dp"
17+
app:sv_centerCircleRadius="16dp"
1618
app:sv_speedTextFormat="INTEGER"
1719
app:sv_speedTextSize="11sp"
1820
app:sv_unitTextSize="8sp"/>

‎build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ buildscript {
77
google()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:4.0.0'
11-
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
10+
classpath 'com.android.tools.build:gradle:4.0.1'
11+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
1212
classpath "com.github.dcendents:android-maven-gradle-plugin:1.4.1"
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

‎speedviewlib/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Properties properties = new Properties()
5656
properties.load(project.rootProject.file('local.properties').newDataInputStream())
5757

5858
group = 'com.github.anastr'
59-
version = '1.5.2'
59+
version = '1.5.3'
6060

6161
bintray {
6262
user = properties.getProperty("bintray.user")

0 commit comments

Comments
 (0)