Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ project.xcworkspace
*.iml
.gradle
local.properties
android/build
android/build
.DS_Store
20 changes: 20 additions & 0 deletions ReactNativeTouchThroughView.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
require 'json'

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

Pod::Spec.new do |s|
s.name = "ReactNativeTouchThroughView"
s.version = package['version']
s.summary = package['description']
s.license = "MIT"

s.authors = package['author']
s.homepage = package['homepage']
s.platforms = { :ios => "9.0", :tvos => "9.0" }

s.source = { :git => "https://github.com/rome2rio/react-native-touch-through-view.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true

s.dependency 'React'
end
8 changes: 4 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.android.tools.build:gradle:3.4.2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -28,12 +28,12 @@ allprojects {

// Top-level build file where you can add configuration options common to all sub-projects/modules.
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 16
targetSdkVersion 27
targetSdkVersion 28
}

lintOptions {
Expand Down
Binary file modified android/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-touch-through-view",
"version": "0.1.4",
"description": "",
"version": "1.2.0",
"description": "TouchThroughView",
"repository": {
"type": "git",
"url": "https://github.com/rome2rio/react-native-touch-through-view.git"
Expand All @@ -22,5 +22,5 @@
"bugs": {
"url": "https://github.com/rome2rio/react-native-touch-through-view/issues"
},
"homepage": "https://github.com/rome2rio/react-native-button"
"homepage": "https://github.com/rome2rio/react-native-touch-through-view"
}