new gradle plugin and build tools
This commit is contained in:
parent
24b8999290
commit
23c5603b7f
4 changed files with 6 additions and 9 deletions
|
@ -4,7 +4,7 @@ apply plugin: 'eclipse'
|
|||
|
||||
android {
|
||||
compileSdkVersion 23
|
||||
buildToolsVersion "23.0.1"
|
||||
buildToolsVersion '23.0.2'
|
||||
defaultConfig {
|
||||
applicationId "com.zeapo.pwdstore"
|
||||
minSdkVersion 15
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.zeapo.pwdstore">
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||
|
@ -9,8 +8,7 @@
|
|||
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||||
|
||||
<application android:allowBackup="true" android:icon="@drawable/ic_launcher"
|
||||
android:label="@string/app_name" android:theme="@style/AppTheme"
|
||||
tools:replace="android:theme">
|
||||
android:label="@string/app_name" android:theme="@style/AppTheme">
|
||||
<activity android:name=".PasswordStore" android:label="@string/app_name"
|
||||
android:configChanges="orientation|screenSize">
|
||||
<intent-filter>
|
||||
|
|
|
@ -6,7 +6,7 @@ buildscript {
|
|||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:1.3.0'
|
||||
classpath 'com.android.tools.build:gradle:1.5.0'
|
||||
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
|
@ -17,13 +17,12 @@ allprojects {
|
|||
repositories {
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
maven { url 'http://guardian.github.com/maven/repo-releases' }
|
||||
}
|
||||
}
|
||||
|
||||
ext {
|
||||
compileSdkVersion = 23
|
||||
buildToolsVersion = "23.0.1"
|
||||
buildToolsVersion = "23.0.2"
|
||||
}
|
||||
subprojects { subproject ->
|
||||
afterEvaluate{
|
||||
|
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,6 +1,6 @@
|
|||
#Thu Dec 04 19:46:18 CET 2014
|
||||
#Wed Dec 23 00:45:56 EST 2015
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
|
||||
|
|
Loading…
Reference in a new issue