-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (32 loc) · 1.13 KB
/
build.gradle
File metadata and controls
37 lines (32 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "helix.profitkey.hotelapp"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:design:22.2.1'
compile project(':library')
/**For the universal-image-loader*/
//compile files('libs/universal-image-loader-1.9.5.jar')
compile files('/home/helixtech-android/Android Stuff/Android Projects/All Projects/ProfitKey1.0/libs/universal-image-loader-1.9.5.jar')
/**For the page indicater*/
//compile 'com.viewpagerindicator:library:2.4.1@aar'
compile 'com.mcxiaoke.viewpagerindicator:library:2.4.1@aar'
}