Skip to content

Commit 989d6b8

Browse files
committed
added gradle related stuff
1 parent 865b7c8 commit 989d6b8

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed

.travis.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
language: android
2+
android:
3+
components:
4+
- tools
5+
- build-tools-23.0.2
6+
- android-23
7+
- extra-android-support
8+
- extra-android-m2repository
9+
- extra-google-m2repository
10+
11+
# Uncomment the lines below if you want to
12+
# use the latest revision of Android SDK Tools
13+
# - platform-tools
14+
# - tools
15+
16+
# The BuildTools version used by your project
17+
#- build-tools-23.0.2
18+
19+
# The SDK version used to compile your project
20+
#- android-23
21+
22+
# Additional components
23+
#- extra-google-google_play_services
24+
#- extra-google-m2repository
25+
#- extra-android-m2repository
26+
#- addon-google_apis-google-19
27+
28+
# Specify at least one system image,
29+
# if you need to run emulator(s) during your tests
30+
#- sys-img-armeabi-v7a-android-19
31+
#- sys-img-x86-android-17

build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.0.0-alpha2'
9+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files

likebutton/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.github.dcendents.android-maven'
3+
4+
group='com.github.jd-alexander'
25

36
android {
47
compileSdkVersion 23

0 commit comments

Comments
 (0)