-
Notifications
You must be signed in to change notification settings - Fork 838
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MEGATO: All Eclipse projects can now open in Android Studio.
- Loading branch information
Showing
416 changed files
with
6,220 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
bin | ||
gen | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// Sample build.gradle used in making ADT/AndMore projects work with Android Studio | ||
// while making only minimal or no changes to the filesystem hierarchy. | ||
// See https://androidcookbook.com/r/5203 for caveats and details! | ||
// See https://developer.android.com/studio/ for more on Android Studio. | ||
// See https://gradle.org/ for more on Gradle | ||
|
||
apply plugin: 'com.android.application' | ||
|
||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:+' | ||
} | ||
} | ||
|
||
android { | ||
compileSdkVersion 24 | ||
buildToolsVersion "24" | ||
|
||
defaultConfig { | ||
// applicationId "YOUR.PACKAGE.NAME.HERE" | ||
minSdkVersion 11 | ||
targetSdkVersion 23 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
|
||
sourceSets { | ||
main { | ||
// Comment OUT following line if your project follows Maven/gradle structure src/main/java | ||
java.srcDirs = ['src'] | ||
res.srcDirs = ['res'] | ||
assets.srcDirs = ['assets'] | ||
manifest.srcFile 'AndroidManifest.xml' | ||
} | ||
|
||
androidTest.setRoot('tests') | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.android.support:appcompat-v7:+' | ||
} |
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
AutocompleteTextViewContacts/gradle/wrapper/gradle-wrapper.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Sample 'gradle-wrapper.properties' to make Studio use default Gradle installation | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.DS_Store | ||
/build | ||
/captures | ||
.gradle | ||
/.idea/libraries | ||
/.idea/workspace.xml | ||
*.iml | ||
/local.properties |
Oops, something went wrong.