File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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).
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -5,6 +5,10 @@ def DEFAULT_TARGET_SDK_VERSION = 26
55buildscript {
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 {
3337repositories {
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)'
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments