Skip to content

Commit 808513a

Browse files
updated sdks...
1 parent e1c8ef1 commit 808513a

File tree

18 files changed

+42
-103
lines changed

18 files changed

+42
-103
lines changed

.idea/caches/build_file_checksums.ser

618 Bytes
Binary file not shown.

.idea/caches/gradle_models.ser

171 KB
Binary file not shown.

.idea/compiler.xml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.idea/copyright/profiles_settings.xml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.idea/encodings.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 5 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AutoFitTextViewLibrary/build.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
apply plugin: 'com.android.library'
22

33
android {
4-
compileSdkVersion 24
5-
buildToolsVersion "23.0.3"
4+
compileSdkVersion 28
65

76
defaultConfig {
8-
minSdkVersion 9
9-
targetSdkVersion 24
7+
minSdkVersion 14
8+
targetSdkVersion 28
109
versionCode 1
1110
versionName "1.0"
1211
}
@@ -31,5 +30,5 @@ android {
3130
}
3231

3332
dependencies {
34-
compile 'com.android.support:appcompat-v7:24.0.0'
33+
implementation 'androidx.appcompat:appcompat:1.0.2'
3534
}

AutoFitTextViewLibrary/src/com/lb/auto_fit_textview/AutoResizeTextView.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66
import android.graphics.RectF;
77
import android.graphics.Typeface;
88
import android.os.Build;
9-
import android.support.v7.widget.AppCompatTextView;
109
import android.text.Layout.Alignment;
1110
import android.text.StaticLayout;
1211
import android.text.TextPaint;
1312
import android.text.method.TransformationMethod;
1413
import android.util.AttributeSet;
1514
import android.util.TypedValue;
1615

16+
import androidx.appcompat.widget.AppCompatTextView;
17+
1718
/**
1819
* a textView that is able to self-adjust its font size depending on the min and max size of the font, and its own size.<br/>
1920
* code is heavily based on this StackOverflow thread:

0 commit comments

Comments
 (0)