-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
96 lines (85 loc) · 3.49 KB
/
build.gradle
File metadata and controls
96 lines (85 loc) · 3.49 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.mahesha.activityexamples"
minSdkVersion 18
targetSdkVersion 28
versionCode 2
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
/*signingConfigs {
debug {
try {
keyAlias 'Softgen Infotech'
keyPassword KEY_PASSWORD
storeFile file('softgen.jks')
storePassword KEYSTORE_PASSWORD
}
catch (ex) {
throw new InvalidUserDataException("You should define the KEYSTORE_PASSWORD and KEY_PASSWORD in gradle.properties.")
}
keyAlias 'Softgen Infotech'
keyPassword 'mahesh20A'
storePassword 'mahesh20A'
}
}*/
packagingOptions {
exclude 'LICENSE.txt'
}
// Resolve dependency differences between app and tests
configurations.all {
resolutionStrategy.force 'com.android.support:support-annotations:25.0.1'
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.google.android.gms:play-services-maps:9.2.1'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.weiwangcn.betterspinner:library-material:1.1.0'
implementation 'com.google.android.gms:play-services-auth:9.2.1'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.mikhaellopez:circularimageview:3.0.2'
implementation 'com.google.android.gms:play-services-appindexing:9.2.1'
implementation 'com.google.android.gms:play-services-location:9.2.1'
implementation 'com.jakewharton:butterknife:8.5.1'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
def power_mockito_version = "2.0.0-beta.5"
testImplementation 'junit:junit:4.12'
testImplementation 'org.json:json:20171018'
testImplementation 'org.mockito:mockito-core:2.21.0'
testImplementation "org.powermock:powermock-module-junit4:$power_mockito_version"
testImplementation "org.powermock:powermock-module-junit4-rule:$power_mockito_version"
testImplementation "org.powermock:powermock-api-mockito2:$power_mockito_version"
testImplementation "org.powermock:powermock-classloading-xstream:$power_mockito_version"
testImplementation "org.powermock:powermock-core:2.0.0-beta.5$power_mockito_version"
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
}
apply plugin: 'com.google.gms.google-services'