Skip to content

Commit bd49c81

Browse files
committed
v1.0.1 add google repository
1 parent 8b79731 commit bd49c81

5 files changed

Lines changed: 14 additions & 5 deletions

File tree

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## react-native-cross-settings changes
22

3+
### 2018-03-19 v1.0.1
4+
- Add missing google repository (for development).
5+
36
### 2018-03-19 v1.0.0
47

58
- Flow types added (not sure if correctly).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const myArray = JSON.parse(Settings.get('myArray') || '[]')
106106

107107
## TODO
108108

109-
[ ] Support Array
109+
- [ ] Support Array
110110

111111
## License
112112

android/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ def DEFAULT_TARGET_SDK_VERSION = 26
55
buildscript {
66
repositories {
77
jcenter()
8+
maven {
9+
url 'https://maven.google.com/'
10+
name 'Google'
11+
}
812
}
913
dependencies {
1014
classpath 'com.android.tools.build:gradle:2.3.3'
@@ -20,7 +24,7 @@ android {
2024
minSdkVersion 16
2125
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
2226
versionCode 1
23-
// versionName "0.3.0"
27+
versionName "1.0.1"
2428
}
2529

2630
lintOptions {
@@ -33,6 +37,10 @@ android {
3337
repositories {
3438
mavenCentral()
3539
jcenter()
40+
maven {
41+
url 'https://maven.google.com/'
42+
name 'Google'
43+
}
3644
maven {
3745
url "$rootDir/../node_modules/react-native/android"
3846
name 'React Native (local)'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-cross-settings",
33
"description": "React Native `Settings` module for both Android & iOS.",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"license": "MIT",
66
"main": "./index.js",
77
"typings": "./index.d.ts",

0 commit comments

Comments
 (0)