Skip to content

Commit

Permalink
Merge pull request #6 from novom/fix-android-warnings
Browse files Browse the repository at this point in the history
Fix android warnings
  • Loading branch information
Samarkial authored May 31, 2022
2 parents 7ebba4c + e741488 commit 0d5b992
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
8 changes: 6 additions & 2 deletions ReactNativeBeaconsManager.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
require 'json'

package = JSON.parse(File.read(File.join(__dir__, 'package.json')))

Pod::Spec.new do |s|
s.name = "ReactNativeBeaconsManager"
s.version = "1.1.0"
s.version = package['version']
s.summary = "React-Native library for detecting beacons (iOS and Android)"
s.homepage = "https://github.com/MacKentoch/react-native-beacons-manager#readme"
s.homepage = "https://github.com/novom/react-native-beacons-manager#readme"
s.license = { :type => "MIT" }
s.authors = { "" => "" }
s.platform = :ios, "8.0"
Expand Down
3 changes: 1 addition & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,5 @@ dependencies {
//noinspection GradleDynamicVersion
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.facebook.react:react-native:+'
implementation 'com.intellij:annotations:+@jar'
compile 'org.altbeacon:android-beacon-library:2.19.3'
implementation 'org.altbeacon:android-beacon-library:2.19.3'
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@novom/react-native-beacons-manager",
"version": "1.1.2",
"version": "1.1.3",
"description": "React-Native library for detecting beacons (iOS and Android)",
"keywords": [
"react-native",
Expand Down Expand Up @@ -28,9 +28,9 @@
},
"types": "typings/react-native-beacons-manager.d.ts",
"bugs": {
"url": "https://github.com/MacKentoch/react-native-beacons-manager/issues"
"url": "https://github.com/novom/react-native-beacons-manager/issues"
},
"homepage": "https://github.com/MacKentoch/react-native-beacons-manager#readme",
"homepage": "https://github.com/novom/react-native-beacons-manager#readme",
"main": "index.js",
"directories": {
"example": "examples",
Expand Down

0 comments on commit 0d5b992

Please sign in to comment.