Skip to content

Commit

Permalink
Pin Android to 2.1.10, update readme/issue templates to match v3 nati…
Browse files Browse the repository at this point in the history
…ve repos (#97)

* pin Android to 2.1.10

* update README

* remove brew upgrade step

* revert remove brew upgrade step

* remove cache

* brew unlink
  • Loading branch information
nickpatrick authored Mar 8, 2020
1 parent 144c179 commit bb3214f
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 64 deletions.
15 changes: 8 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ jobs:
- image: circleci/node:8
steps:
- checkout

- restore_cache:
name: Restore node modules cache
key: lock-v1-{{ checksum "package-lock.json" }}-{{ arch }}

- run: npm install
- run: npm install

- save_cache:
name: Save node modules cache
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:

- attach_workspace:
at: ~/react-native-radar

- run: npm run test-android

- run:
Expand All @@ -64,10 +64,10 @@ jobs:
path: test-results

ios:
macos:
macos:
xcode: "11.0.0"
working_directory: ~/react-native-radar

steps:
- checkout

Expand All @@ -76,7 +76,7 @@ jobs:
key: lock-v1-{{ checksum "package-lock.json" }}-{{ arch }}

- run: npm install

- save_cache:
name: Save node modules cache
key: lock-v1-{{ checksum "package-lock.json" }}-{{ arch }}
Expand All @@ -88,12 +88,13 @@ jobs:
key: brew-cache-v1

- run: brew update
- run: brew unlink python@2
- run: brew upgrade
- run: brew install carthage
- run:
command: carthage bootstrap
working_directory: ios

- save_cache:
name: Save homebrew cache
key: brew-cache-v1
Expand Down
19 changes: 19 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!--
Please only open issues here for bugs or feature requests.
If you have questions about your Radar integration, please email us at support@radar.io instead.
-->

## Summary

## Code to reproduce

## Steps to reproduce

## OS version

## SDK installation method

## SDK version

## Other information
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![npm](https://img.shields.io/npm/v/react-native-radar.svg)](https://www.npmjs.com/package/react-native-radar)

[Radar](https://radar.io) is the location platform for mobile apps.
[Radar](https://radar.io) is location data infrastructure. You can use Radar SDKs and APIs to add location context to your apps with just a few lines of code.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ repositories {

dependencies {
api 'com.facebook.react:react-native:+'
api 'io.radar:sdk:2.1.+'
api 'io.radar:sdk:2.1.10'

testImplementation 'org.mockito:mockito-core:2.23.4'
testImplementation 'org.powermock:powermock-module-junit4:2.0.0'
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "react-native-radar",
"description": "React Native module for Radar, the location context platform",
"description": "React Native module for Radar, location data infrastructure",
"homepage": "https://radar.io",
"license": "Apache-2.0",
"version": "2.1.9",
"version": "2.1.10",
"main": "js/index.js",
"files": [
"android",
Expand Down

0 comments on commit bb3214f

Please sign in to comment.