- Updated target, build tools and support libraries version to 26.

- Added dependency repositories jcenter and maven.google.com.
- Changed deprecated ActionBarActivity to AppCompatActivity.
This commit is contained in:
John Zhen M 2017-08-01 14:54:32 -07:00
parent 75b5bc03f7
commit 39277d569f
2 changed files with 16 additions and 9 deletions

View File

@ -1,13 +1,20 @@
apply plugin: 'com.android.application'
allprojects {
repositories {
jcenter()
maven { url 'https://maven.google.com' }
}
}
android {
compileSdkVersion 25
buildToolsVersion '25.0.2'
compileSdkVersion 26
buildToolsVersion '26.0.1'
defaultConfig {
applicationId "org.schabi.newpipe"
minSdkVersion 15
targetSdkVersion 25
targetSdkVersion 26
versionCode 37
versionName "0.9.10"
@ -42,10 +49,10 @@ dependencies {
testCompile 'org.mockito:mockito-core:1.10.19'
testCompile 'org.json:json:20160810'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:appcompat-v7:26.0.0'
compile 'com.android.support:support-v4:26.0.0'
compile 'com.android.support:design:26.0.0'
compile 'com.android.support:recyclerview-v7:26.0.0'
compile 'com.google.code.gson:gson:2.7'
compile 'org.jsoup:jsoup:1.8.3'

View File

@ -1,12 +1,12 @@
package us.shandian.giga.ui.common;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import org.schabi.newpipe.R;
public abstract class ToolbarActivity extends ActionBarActivity {
public abstract class ToolbarActivity extends AppCompatActivity {
protected Toolbar mToolbar;
@Override