File tree 6 files changed +22
-16
lines changed
java/com/sothree/slidinguppanel/demo
6 files changed +22
-16
lines changed Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
buildscript {
3
3
repositories {
4
- mavenCentral ()
4
+ jcenter ()
5
5
}
6
6
7
7
dependencies {
@@ -18,7 +18,10 @@ allprojects {
18
18
group = GROUP
19
19
20
20
repositories {
21
- mavenCentral()
21
+ jcenter()
22
+ maven {
23
+ url " https://maven.google.com"
24
+ }
22
25
}
23
26
}
24
27
Original file line number Diff line number Diff line change @@ -2,20 +2,20 @@ apply plugin: 'com.android.application'
2
2
3
3
android {
4
4
compileSdkVersion 26
5
- buildToolsVersion " 26.0.0 "
5
+ buildToolsVersion " 26.0.1 "
6
6
7
7
lintOptions {
8
8
abortOnError false
9
9
}
10
10
11
11
defaultConfig {
12
- minSdkVersion 11
12
+ minSdkVersion 14
13
13
targetSdkVersion 26
14
14
}
15
15
}
16
16
17
17
dependencies {
18
- compile ' com.android.support:support-v4:26.0.0-alpha1 '
19
- compile ' com.android.support:appcompat-v7:26.0.0-alpha1 '
18
+ compile ' com.android.support:support-v4:26.0.2 '
19
+ compile ' com.android.support:appcompat-v7:26.0.2 '
20
20
compile project(' :library' )
21
21
}
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
3
package =" com.sothree.slidinguppanel.demo"
4
+ xmlns : tools =" http://schemas.android.com/tools"
4
5
android : versionCode =" 16"
5
6
android : versionName =" 3.3.1" >
6
7
7
8
<uses-sdk
8
- android : minSdkVersion =" 11"
9
- android : targetSdkVersion =" 17" />
9
+ android : minSdkVersion =" 14"
10
+ android : targetSdkVersion =" 17"
11
+ tools : overrideLibrary =" android.support.v7.appcompat,android.support.graphics.drawavle"
12
+ />
10
13
11
14
<application
12
15
android : allowBackup =" true"
Original file line number Diff line number Diff line change 3
3
import android .content .Intent ;
4
4
import android .net .Uri ;
5
5
import android .os .Bundle ;
6
- import android .support .v7 .app .ActionBarActivity ;
6
+ import android .support .v7 .app .AppCompatActivity ;
7
7
import android .support .v7 .widget .Toolbar ;
8
8
import android .text .Html ;
9
9
import android .text .method .LinkMovementMethod ;
26
26
import java .util .Arrays ;
27
27
import java .util .List ;
28
28
29
- public class DemoActivity extends ActionBarActivity {
29
+ public class DemoActivity extends AppCompatActivity {
30
30
private static final String TAG = "DemoActivity" ;
31
31
32
32
private SlidingUpPanelLayout mLayout ;
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.library'
2
2
3
3
repositories {
4
- mavenCentral ()
4
+ jcenter ()
5
5
}
6
6
7
7
dependencies {
8
- compile ' com.android.support:support-v4:26.0.0-alpha1 '
9
- compile ' com.android.support:support-annotations:26.0.0-alpha1 '
10
- compile ' com.android.support:recyclerview-v7:26.0.0-alpha1 '
8
+ compile ' com.android.support:support-v4:26.0.2 '
9
+ compile ' com.android.support:support-annotations:26.0.2 '
10
+ compile ' com.android.support:recyclerview-v7:26.0.2 '
11
11
}
12
12
13
13
android {
14
14
compileSdkVersion 26
15
- buildToolsVersion " 26.0.0 "
15
+ buildToolsVersion " 26.0.1 "
16
16
lintOptions {
17
17
abortOnError false
18
18
}
Original file line number Diff line number Diff line change 5
5
android : versionName =" 3.3.1" >
6
6
7
7
<uses-sdk
8
- android : minSdkVersion =" 8 " />
8
+ android : minSdkVersion =" 14 " />
9
9
10
10
<application />
11
11
You can’t perform that action at this time.
0 commit comments