@attentive-mobile/attentive-react-native-sdk 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/build.gradle +8 -8
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -55,12 +55,12 @@ android {
|
|
|
55
55
|
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
-
Properties ghProperties = new Properties()
|
|
59
|
-
File ghPropertiesFile = file("github.properties")
|
|
60
|
-
if (!ghPropertiesFile.exists()) {
|
|
61
|
-
throw new GradleException('Could not find github.properties file.')
|
|
62
|
-
}
|
|
63
|
-
ghProperties.load(ghPropertiesFile.newDataInputStream())
|
|
58
|
+
//Properties ghProperties = new Properties()
|
|
59
|
+
//File ghPropertiesFile = file("github.properties")
|
|
60
|
+
//if (!ghPropertiesFile.exists()) {
|
|
61
|
+
// throw new GradleException('Could not find github.properties file.')
|
|
62
|
+
//}
|
|
63
|
+
//ghProperties.load(ghPropertiesFile.newDataInputStream())
|
|
64
64
|
|
|
65
65
|
repositories {
|
|
66
66
|
mavenCentral()
|
|
@@ -68,8 +68,8 @@ repositories {
|
|
|
68
68
|
maven {
|
|
69
69
|
url = uri("https://maven.pkg.github.com/attentive-mobile/attentive-android-sdk")
|
|
70
70
|
credentials {
|
|
71
|
-
username = ghProperties.getProperty('gpr.user')
|
|
72
|
-
password = ghProperties.getProperty('gpr.key')
|
|
71
|
+
// username = ghProperties.getProperty('gpr.user')
|
|
72
|
+
// password = ghProperties.getProperty('gpr.key')
|
|
73
73
|
}
|
|
74
74
|
}
|
|
75
75
|
}
|