new gradle plugin and build tools

This commit is contained in:
Matthew Wong 2015-12-23 00:51:36 -05:00
parent 24b8999290
commit 23c5603b7f
4 changed files with 6 additions and 9 deletions

View file

@ -4,7 +4,7 @@ apply plugin: 'eclipse'
android { android {
compileSdkVersion 23 compileSdkVersion 23
buildToolsVersion "23.0.1" buildToolsVersion '23.0.2'
defaultConfig { defaultConfig {
applicationId "com.zeapo.pwdstore" applicationId "com.zeapo.pwdstore"
minSdkVersion 15 minSdkVersion 15

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.zeapo.pwdstore"> package="com.zeapo.pwdstore">
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
@ -9,8 +8,7 @@
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" <application android:allowBackup="true" android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:theme="@style/AppTheme" android:label="@string/app_name" android:theme="@style/AppTheme">
tools:replace="android:theme">
<activity android:name=".PasswordStore" android:label="@string/app_name" <activity android:name=".PasswordStore" android:label="@string/app_name"
android:configChanges="orientation|screenSize"> android:configChanges="orientation|screenSize">
<intent-filter> <intent-filter>

View file

@ -6,7 +6,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { 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 // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
@ -17,13 +17,12 @@ allprojects {
repositories { repositories {
jcenter() jcenter()
mavenCentral() mavenCentral()
maven { url 'http://guardian.github.com/maven/repo-releases' }
} }
} }
ext { ext {
compileSdkVersion = 23 compileSdkVersion = 23
buildToolsVersion = "23.0.1" buildToolsVersion = "23.0.2"
} }
subprojects { subproject -> subprojects { subproject ->
afterEvaluate{ afterEvaluate{

View file

@ -1,6 +1,6 @@
#Thu Dec 04 19:46:18 CET 2014 #Wed Dec 23 00:45:56 EST 2015
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists 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