This repository was archived by the owner on Jun 10, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Expand file tree Collapse file tree 7 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ dependencies {
24
24
androidTestCompile(' com.android.support.test.espresso:espresso-core:2.2.2' , {
25
25
exclude group : ' com.android.support' , module : ' support-annotations'
26
26
})
27
- compile ' com.android.support:appcompat-v7:23.4.0 '
27
+ compile ' com.android.support:appcompat-v7:24.2.1 '
28
28
testCompile ' junit:junit:4.12'
29
29
compile project(" :textviewplus" )
30
30
}
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ buildscript {
5
5
jcenter()
6
6
}
7
7
dependencies {
8
- classpath ' com.android.tools.build:gradle:2.2.2 '
8
+ classpath ' com.android.tools.build:gradle:2.2.3 '
9
9
classpath ' com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
10
10
classpath ' com.github.dcendents:android-maven-gradle-plugin:1.4.1'
11
11
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.jfrog.bintray'
2
2
3
- version = ' 1.1.0 '
3
+ version = ' 1.2.2 '
4
4
5
5
task sourcesJar (type : Jar ) {
6
6
from android. sourceSets. main. java. srcDirs
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ android {
7
7
defaultConfig {
8
8
minSdkVersion 15
9
9
targetSdkVersion 24
10
- versionCode 3
11
- versionName " 1.2.1 "
10
+ versionCode 4
11
+ versionName " 1.2.2 "
12
12
13
13
testInstrumentationRunner " android.support.test.runner.AndroidJUnitRunner"
14
14
Original file line number Diff line number Diff line change 3
3
import android .content .Context ;
4
4
import android .content .res .TypedArray ;
5
5
import android .graphics .Typeface ;
6
+ import android .support .v7 .widget .AppCompatButton ;
6
7
import android .util .AttributeSet ;
7
8
import android .util .Log ;
8
- import android .widget .Button ;
9
9
10
10
import phelat .TextView .R ;
11
11
import phelat .Utils .FontHelper ;
12
12
13
- public class Plus extends Button {
13
+ public class Plus extends AppCompatButton {
14
14
15
15
private static final String TAG = "TextViewPlus" ;
16
16
Original file line number Diff line number Diff line change 3
3
import android .content .Context ;
4
4
import android .content .res .TypedArray ;
5
5
import android .graphics .Typeface ;
6
+ import android .support .v7 .widget .AppCompatEditText ;
6
7
import android .util .AttributeSet ;
7
8
import android .util .Log ;
8
- import android .widget .EditText ;
9
9
10
10
import phelat .TextView .R ;
11
11
import phelat .Utils .FontHelper ;
12
12
13
- public class Plus extends EditText {
13
+ public class Plus extends AppCompatEditText {
14
14
15
15
private static final String TAG = "TextViewPlus" ;
16
16
Original file line number Diff line number Diff line change 3
3
import android .content .Context ;
4
4
import android .content .res .TypedArray ;
5
5
import android .graphics .Typeface ;
6
+ import android .support .v7 .widget .AppCompatTextView ;
6
7
import android .util .AttributeSet ;
7
8
import android .util .Log ;
8
- import android .widget .TextView ;
9
9
10
10
import phelat .Utils .FontHelper ;
11
11
12
- public class Plus extends TextView {
12
+ public class Plus extends AppCompatTextView {
13
13
14
14
private static final String TAG = "TextViewPlus" ;
15
15
You can’t perform that action at this time.
0 commit comments