Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Upgrade to newest Android Studio and tools.
  • Loading branch information
spacecowboy committed Jul 27, 2014
1 parent 04c7d9a commit 5f3460b
Show file tree
Hide file tree
Showing 8 changed files with 114 additions and 18 deletions.
18 changes: 17 additions & 1 deletion build.gradle
@@ -1,11 +1,27 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

Expand Down
6 changes: 3 additions & 3 deletions core/build.gradle
Expand Up @@ -3,13 +3,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
// the latest version of the android-apt plugin for annotations
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
Expand Down Expand Up @@ -63,7 +63,7 @@ android {
buildToolsVersion "19.1.0"

defaultConfig {
packageName "com.nononsenseapps.notepad.core"
applicationId "com.nononsenseapps.notepad.core"
}

lintOptions {
Expand Down
20 changes: 18 additions & 2 deletions external/ActionBar-PullToRefresh/build.gradle
@@ -1,13 +1,29 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

dependencies {
//compile fileTree(dir: 'libs', include: '*.jar')
Expand Down
20 changes: 18 additions & 2 deletions external/ShowcaseView/build.gradle
@@ -1,13 +1,29 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

repositories {
mavenCentral()
Expand Down
20 changes: 18 additions & 2 deletions external/datetimepicker/build.gradle
@@ -1,13 +1,29 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

dependencies {
//compile fileTree(dir: 'libs', include: '*.jar')
Expand Down
20 changes: 18 additions & 2 deletions external/drag-sort-listview/build.gradle
@@ -1,13 +1,29 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

dependencies {
//compile fileTree(dir: 'libs', include: '*.jar')
Expand Down
8 changes: 4 additions & 4 deletions full/build.gradle
Expand Up @@ -3,13 +3,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
// the latest version of the android-apt plugin for annotations
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.2'
}
}

apply plugin: 'android'
apply plugin: 'com.android.application'
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
Expand Down Expand Up @@ -92,10 +92,10 @@ android {

defaultConfig {
applicationId "com.nononsenseapps.notepad"
versionCode 119
versionCode 121
versionName getVersionName()

testPackageName "com.nononsenseapps.notepad.test"
testApplicationId "com.nononsenseapps.notepad.test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}

Expand Down
20 changes: 18 additions & 2 deletions lib/build.gradle
@@ -1,13 +1,29 @@
/*
* Copyright (c) 2014 Jonas Kalderstam.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.11.+'
classpath 'com.android.tools.build:gradle:0.12.1'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

dependencies {
compile 'com.android.support:support-v4:19.0.1+'
Expand Down

0 comments on commit 5f3460b

Please sign in to comment.