Skip to content

Commit 0edfeb7

Browse files
committed
MEGATO: All Eclipse projects can now open in Android Studio.
1 parent 2963387 commit 0edfeb7

File tree

416 files changed

+6220
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

416 files changed

+6220
-1
lines changed

AboutInfo/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

AboutInfo/build.gradle

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
52.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

AddContact/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

AddContact/build.gradle

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
52.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

AndroidPlot/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

AndroidPlot/build.gradle

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
52.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

AndroidRss/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

AndroidRss/build.gradle

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
52.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

AutoUpdater/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

AutoUpdater/build.gradle

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
52.4 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists
+8
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
11
bin
22
gen
3+
.DS_Store
4+
/build
5+
/captures
6+
.gradle
7+
/.idea/libraries
8+
/.idea/workspace.xml
9+
*.iml
10+
/local.properties
+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio
2+
// while making only minimal or no changes to the filesystem hierarchy.
3+
// See https://androidcookbook.com/r/5203 for caveats and details!
4+
// See https://developer.android.com/studio/ for more on Android Studio.
5+
// See https://gradle.org/ for more on Gradle
6+
7+
apply plugin: 'com.android.application'
8+
9+
buildscript {
10+
repositories {
11+
mavenCentral()
12+
}
13+
dependencies {
14+
classpath 'com.android.tools.build:gradle:+'
15+
}
16+
}
17+
18+
android {
19+
compileSdkVersion 24
20+
buildToolsVersion "24"
21+
22+
defaultConfig {
23+
// applicationId "YOUR.PACKAGE.NAME.HERE"
24+
minSdkVersion 11
25+
targetSdkVersion 23
26+
versionCode 1
27+
versionName "1.0"
28+
}
29+
30+
sourceSets {
31+
main {
32+
// Comment OUT following line if your project follows Maven/gradle structure src/main/java
33+
java.srcDirs = ['src']
34+
res.srcDirs = ['res']
35+
assets.srcDirs = ['assets']
36+
manifest.srcFile 'AndroidManifest.xml'
37+
}
38+
39+
androidTest.setRoot('tests')
40+
}
41+
}
42+
43+
dependencies {
44+
compile fileTree(dir: 'libs', include: ['*.jar'])
45+
compile 'com.android.support:appcompat-v7:+'
46+
}
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
5+
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

BackupManager/.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
/build
3+
/captures
4+
.gradle
5+
/.idea/libraries
6+
/.idea/workspace.xml
7+
*.iml
8+
/local.properties

0 commit comments

Comments
 (0)