Commit e95e0970 authored by lizujian's avatar lizujian Committed by GitHub

Merge pull request #1 from gre/master

同步原仓库
parents cf430605 2d85e8f7
...@@ -11,12 +11,12 @@ buildscript { ...@@ -11,12 +11,12 @@ buildscript {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 25 compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 25
buildToolsVersion "25.0.3" buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '25.0.3'
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 22 targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 22
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
} }
......
...@@ -18,6 +18,10 @@ RCT_EXPORT_MODULE(); ...@@ -18,6 +18,10 @@ RCT_EXPORT_MODULE();
return self; return self;
} }
+ (BOOL)requiresMainQueueSetup {
return NO;
}
- (dispatch_queue_t)methodQueue - (dispatch_queue_t)methodQueue
{ {
return self.bridge.uiManager.methodQueue; return self.bridge.uiManager.methodQueue;
......
{ {
"name": "gl-react-native", "name": "gl-react-native",
"version": "2.48.0", "version": "2.57.0",
"description": "OpenGL bindings for react-native to implement complex effects over images and components, in the descriptive VDOM paradigm", "description": "OpenGL bindings for react-native to implement complex effects over images and components, in the descriptive VDOM paradigm",
"repository": { "repository": {
"type": "git", "type": "git",
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
"author": "Project September <tech@projectseptember.com>", "author": "Project September <tech@projectseptember.com>",
"license": "MIT", "license": "MIT",
"peerDependencies": { "peerDependencies": {
"react-native": "*", "gl-react": "^2.2.4",
"gl-react": "^2.2.4" "react-native": "*"
}, },
"dependencies": { "dependencies": {
"invariant": "2.2.0" "invariant": "2.2.0"
......
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
invariant@2.2.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.0.tgz#c8d7e847366a49cc18b622f058a689d481e895f2"
integrity sha1-yNfoRzZqScwYtiLwWKaJ1IHolfI=
dependencies:
loose-envify "^1.0.0"
"js-tokens@^3.0.0 || ^4.0.0":
version "4.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
loose-envify@^1.0.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
dependencies:
js-tokens "^3.0.0 || ^4.0.0"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment