Skip to content

Commit

Permalink
v1.0.1 add google repository
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarCruz committed Jul 23, 2018
1 parent 8b79731 commit bd49c81
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .eslintignore

This file was deleted.

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## react-native-cross-settings changes

### 2018-03-19 v1.0.1
- Add missing google repository (for development).

### 2018-03-19 v1.0.0

- Flow types added (not sure if correctly).
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const myArray = JSON.parse(Settings.get('myArray') || '[]')

## TODO

[ ] Support Array
- [ ] Support Array

## License

Expand Down
10 changes: 9 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ def DEFAULT_TARGET_SDK_VERSION = 26
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
Expand All @@ -20,7 +24,7 @@ android {
minSdkVersion 16
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
versionCode 1
// versionName "0.3.0"
versionName "1.0.1"
}

lintOptions {
Expand All @@ -33,6 +37,10 @@ android {
repositories {
mavenCentral()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "$rootDir/../node_modules/react-native/android"
name 'React Native (local)'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-cross-settings",
"description": "React Native `Settings` module for both Android & iOS.",
"version": "1.0.0",
"version": "1.0.1",
"license": "MIT",
"main": "./index.js",
"typings": "./index.d.ts",
Expand Down

0 comments on commit bd49c81

Please sign in to comment.