Skip to content

Commit c5fa844

Browse files
committed
Merge pull request #1 from rogerhu/studio
Convert to Android Studio.
2 parents 3c036e7 + d64327c commit c5fa844

File tree

26 files changed

+307
-15
lines changed

26 files changed

+307
-15
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,11 @@ local.properties
5656
.cproject
5757

5858
# PDT-specific
59-
.buildpath
59+
.buildpath
60+
61+
# Android Studio project files
62+
*.iml
63+
.gradle
64+
.idea
65+
build
66+
import-summary.txt

app/build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 19
5+
buildToolsVersion "21.1.2"
6+
7+
defaultConfig {
8+
applicationId "com.codepath.example.customadapterdemo"
9+
minSdkVersion 14
10+
targetSdkVersion 19
11+
}
12+
13+
buildTypes {
14+
release {
15+
minifyEnabled false
16+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
17+
}
18+
}
19+
}
20+
21+
dependencies {
22+
compile 'com.android.support:support-v4:21.0.3'
23+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)