expo-module-template-local 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/android/build.gradle
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
2
|
|
|
3
3
|
group = '<%- project.package %>'
|
|
4
|
-
version = '0.6.
|
|
4
|
+
version = '0.6.3'
|
|
5
5
|
|
|
6
6
|
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
7
|
apply from: expoModulesCorePlugin
|
|
@@ -35,7 +35,7 @@ android {
|
|
|
35
35
|
namespace "<%- project.package %>"
|
|
36
36
|
defaultConfig {
|
|
37
37
|
versionCode 1
|
|
38
|
-
versionName "0.6.
|
|
38
|
+
versionName "0.6.3"
|
|
39
39
|
}
|
|
40
40
|
lintOptions {
|
|
41
41
|
abortOnError false
|
|
@@ -40,7 +40,7 @@ class <%- project.moduleName %> : Module() {
|
|
|
40
40
|
// the view definition: Prop, Events.
|
|
41
41
|
View(<%- project.viewName %>::class) {
|
|
42
42
|
// Defines a setter for the `url` prop.
|
|
43
|
-
Prop("url") { view: <%- project.viewName %>, url:
|
|
43
|
+
Prop("url") { view: <%- project.viewName %>, url: URL ->
|
|
44
44
|
view.webView.loadUrl(url.toString())
|
|
45
45
|
}
|
|
46
46
|
// Defines an event that the view can send to JavaScript.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-module-template-local",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "ExpoModuleTemplate standalone module",
|
|
5
5
|
"scripts": {},
|
|
6
6
|
"keywords": [
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"dependencies": {},
|
|
23
23
|
"devDependencies": {},
|
|
24
24
|
"peerDependencies": {},
|
|
25
|
-
"gitHead": "
|
|
25
|
+
"gitHead": "b7b95a93855cb4863b626c4524fc6e8b3a2305eb"
|
|
26
26
|
}
|