Skip to content

Commit a6cfc49

Browse files
committed
Added Gradle configuration
1 parent f2ff27e commit a6cfc49

2 files changed

Lines changed: 43 additions & 11 deletions

File tree

Cloudinary/.gitignore

Lines changed: 29 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,35 @@
1-
# built application files
2-
*.apk
3-
*.ap_
1+
#Android generated
2+
bin
3+
gen
44

5-
# files for the dex VM
6-
*.dex
5+
#Eclipse
6+
.project
7+
.classpath
8+
.settings
79

8-
# Java class files
9-
*.class
10+
#IntelliJ IDEA
11+
.idea
12+
*.iml
13+
*.ipr
14+
*.iws
15+
out
1016

11-
# generated files
12-
bin/
13-
gen/
17+
#Maven
18+
target
19+
release.properties
20+
pom.xml.*
1421

15-
# Local configuration file (sdk path, etc)
22+
#Ant
23+
build.xml
1624
local.properties
25+
proguard.cfg
1726

27+
#OSX
28+
.DS_Store
29+
30+
31+
# Android Studio
32+
.idea
33+
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
34+
.gradle
35+
build/

Cloudinary/build.gradle

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apply plugin: 'android-library'
2+
3+
android {
4+
compileSdkVersion 17
5+
buildToolsVersion '19.1.0'
6+
7+
sourceSets {
8+
main {
9+
manifest.srcFile 'AndroidManifest.xml'
10+
java.srcDirs = ['src']
11+
res.srcDirs = ['res']
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)