summaryrefslogtreecommitdiff
path: root/android/testData/projects
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2014-03-25 02:53:57 +0000
committerSiva Velusamy <vsiva@google.com>2014-03-25 02:53:57 +0000
commit7eb7f9fb9285df88a720b01fb9230a180a1c99c1 (patch)
treed0b42e47c4c52ad3837684123198076300d4ced8 /android/testData/projects
parent96fbaa977d04ab998e4f3bd001f3aceb6287c93b (diff)
downloadidea-7eb7f9fb9285df88a720b01fb9230a180a1c99c1.tar.gz
Revert "Unify gradle resolvers"
This reverts commit 96fbaa977d04ab998e4f3bd001f3aceb6287c93b. Change-Id: Iff37b93f44eb1e88618fdbb87210da8609343eda
Diffstat (limited to 'android/testData/projects')
-rw-r--r--android/testData/projects/resolve/simple/build.gradle45
-rw-r--r--android/testData/projects/resolve/simple/src/main/AndroidManifest.xml31
2 files changed, 0 insertions, 76 deletions
diff --git a/android/testData/projects/resolve/simple/build.gradle b/android/testData/projects/resolve/simple/build.gradle
deleted file mode 100644
index f94a39df6dd..00000000000
--- a/android/testData/projects/resolve/simple/build.gradle
+++ /dev/null
@@ -1,45 +0,0 @@
-buildscript {
- repositories {
- mavenCentral()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:0.9.+'
- }
-}
-apply plugin: 'android'
-
-repositories {
- mavenCentral()
-}
-
-android {
- compileSdkVersion 18
- buildToolsVersion "19.0.0"
-
- defaultConfig {
- minSdkVersion 8
- }
-
- buildTypes {
- release {
- runProguard false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
-
- productFlavors {
- flavor1 {
- packageName "com.example.flavor1"
- }
- }
-
- signingConfigs {
- myConfig {
- storeFile file("other.keystore")
- }
- }
-
- lintOptions {
- quiet true
- }
-}
diff --git a/android/testData/projects/resolve/simple/src/main/AndroidManifest.xml b/android/testData/projects/resolve/simple/src/main/AndroidManifest.xml
deleted file mode 100644
index e8aa725b07d..00000000000
--- a/android/testData/projects/resolve/simple/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
- ~ Copyright (C) 2014 The Android Open Source Project
- ~
- ~ 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.
- -->
-<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.unittest"
- android:versionCode="1"
- android:versionName="1.0" >
-
- <uses-sdk
- android:minSdkVersion="7"
- android:targetSdkVersion="18" />
-
- <application
- android:allowBackup="true"
- android:label="app_name" >
- </application>
-
-</manifest>