Skip to content

Commit 4696887

Browse files
committed
Version Bump
1 parent a019b8f commit 4696887

1 file changed

Lines changed: 83 additions & 0 deletions

File tree

project/build.gradle

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2+
buildscript {
3+
// def whProperties = new Properties()
4+
// whProperties.load(new FileInputStream('wh.properties'))
5+
// project.ext.whSdkDir = file(whProperties['wh.repo'])
6+
7+
repositories {
8+
jcenter()
9+
// maven {
10+
// url("${project.whSdkDir.absolutePath}")
11+
// }
12+
maven {
13+
url "http://10.2.6.190:8081/nexus/content/repositories/releases/"
14+
}
15+
maven {
16+
url 'https://maven.fabric.io/public'
17+
}
18+
maven {
19+
url "http://maven.batch.com/release"
20+
}
21+
maven {
22+
url "http://dl.bintray.com/teads/TeadsSDK-android"
23+
}
24+
maven {
25+
url 'https://maven.google.com'
26+
}
27+
}
28+
dependencies {
29+
classpath 'com.android.tools.build:gradle:3.0.0-alpha2'
30+
classpath 'com.google.gms:google-services:3.0.0'
31+
classpath 'io.fabric.tools:gradle:1.+'
32+
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
33+
// NOTE: Do not place your application dependencies here; they belong
34+
// in the individual module build.gradle files
35+
}
36+
}
37+
38+
allprojects {
39+
repositories {
40+
jcenter()
41+
// maven {
42+
// url("${project.whSdkDir.absolutePath}")
43+
// }
44+
maven {
45+
url "http://10.2.6.190:8081/nexus/content/repositories/releases/"
46+
}
47+
maven {
48+
url 'https://maven.fabric.io/public'
49+
}
50+
maven {
51+
url "http://maven.batch.com/release"
52+
}
53+
maven {
54+
url "http://dl.bintray.com/teads/TeadsSDK-android"
55+
}
56+
maven {
57+
url 'https://maven.google.com'
58+
}
59+
}
60+
}
61+
62+
63+
task clean(type: Delete) {
64+
delete rootProject.buildDir
65+
}
66+
67+
ext {
68+
buildTools = '26.0.0-rc2'
69+
compileSdk = 25
70+
targetSdkVersion = 25
71+
minSdk = 19
72+
versionCode = 138
73+
versionName = '5.1.7'
74+
75+
supportLibVersion = "25.3.1"
76+
playServicesVersion = "10.2.6"
77+
78+
keyAlias = 'mphone_a'
79+
storeFile = file("/Users/devaufeminin/android/mphone.keystore")
80+
keyPassword = 'd3v4ndroid'
81+
storePassword = 'd3v4ndroid'
82+
}
83+

0 commit comments

Comments
 (0)