fix compatibility with android gradle plugin 0.14

This commit is contained in:
Andrew Shu 2014-11-19 15:30:54 -08:00
parent d506d7660d
commit 0ce3e6e8a6
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.+'
classpath 'com.android.tools.build:gradle:0.14.+'
}
}

View File

@ -11,7 +11,7 @@
// 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.
apply plugin: 'android-library'
apply plugin: 'com.android.library'
android {
compileSdkVersion 19
@ -24,7 +24,7 @@ android {
buildTypes {
release {
runProguard false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}