expo-line-login 1.0.3 → 1.0.4
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/.gradle/8.5/checksums/checksums.lock +0 -0
- package/android/.gradle/8.5/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.5/fileHashes/fileHashes.lock +0 -0
- package/android/build.gradle +23 -63
- package/package.json +2 -2
- package/android/.gradle/8.0/checksums/checksums.lock +0 -0
- package/android/.gradle/8.0/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.0/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.1.1/checksums/checksums.lock +0 -0
- package/android/.gradle/8.1.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/8.1.1/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.1.1/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.1.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.1.1/gc.properties +0 -0
- package/android/.idea/gradle.xml +0 -12
- package/android/.idea/migrations.xml +0 -10
- package/android/.idea/misc.xml +0 -10
- package/android/.idea/vcs.xml +0 -6
- /package/android/.gradle/{8.0 → 8.5}/dependencies-accessors/gc.properties +0 -0
- /package/android/.gradle/{8.0 → 8.5}/fileChanges/last-build.bin +0 -0
- /package/android/.gradle/{8.0 → 8.5}/gc.properties +0 -0
|
Binary file
|
|
Binary file
|
package/android/build.gradle
CHANGED
|
@@ -1,90 +1,50 @@
|
|
|
1
1
|
apply plugin: 'com.android.library'
|
|
2
|
-
apply plugin: 'kotlin-android'
|
|
3
|
-
apply plugin: 'maven-publish'
|
|
4
2
|
|
|
5
3
|
group = 'dev.stanma.line'
|
|
6
4
|
version = '0.1.0'
|
|
7
5
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
ext.kotlinVersion()
|
|
24
|
-
} else {
|
|
25
|
-
ext.safeExtGet("kotlinVersion", "1.8.10")
|
|
6
|
+
def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
|
|
7
|
+
apply from: expoModulesCorePlugin
|
|
8
|
+
applyKotlinExpoModulesCorePlugin()
|
|
9
|
+
useCoreDependencies()
|
|
10
|
+
useExpoPublishing()
|
|
11
|
+
|
|
12
|
+
def useManagedAndroidSdkVersions = false
|
|
13
|
+
|
|
14
|
+
if (useManagedAndroidSdkVersions) {
|
|
15
|
+
useDefaultAndroidSdkVersions()
|
|
16
|
+
} else {
|
|
17
|
+
buildscript {
|
|
18
|
+
// Simple helper that allows the root project to override versions declared by this library.
|
|
19
|
+
ext.safeExtGet = { prop, fallback ->
|
|
20
|
+
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
26
21
|
}
|
|
27
22
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
dependencies {
|
|
34
|
-
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${getKotlinVersion()}")
|
|
35
|
-
}
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
afterEvaluate {
|
|
39
|
-
publishing {
|
|
40
|
-
publications {
|
|
41
|
-
release(MavenPublication) {
|
|
42
|
-
from components.release
|
|
43
|
-
}
|
|
23
|
+
project.android {
|
|
24
|
+
compileSdkVersion safeExtGet("compileSdkVersion", 34)
|
|
25
|
+
defaultConfig {
|
|
26
|
+
minSdkVersion safeExtGet("minSdkVersion", 24)
|
|
27
|
+
targetSdkVersion safeExtGet("targetSdkVersion", 34)
|
|
44
28
|
}
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
}
|
|
29
|
+
|
|
30
|
+
lintOptions {
|
|
31
|
+
abortOnError false
|
|
49
32
|
}
|
|
50
33
|
}
|
|
51
34
|
}
|
|
52
35
|
|
|
53
36
|
android {
|
|
54
|
-
compileSdkVersion safeExtGet("compileSdkVersion", 33)
|
|
55
|
-
|
|
56
|
-
compileOptions {
|
|
57
|
-
sourceCompatibility JavaVersion.VERSION_17
|
|
58
|
-
targetCompatibility JavaVersion.VERSION_17
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
kotlinOptions {
|
|
62
|
-
jvmTarget = JavaVersion.VERSION_17.majorVersion
|
|
63
|
-
}
|
|
64
|
-
|
|
65
37
|
namespace "dev.stanma.line"
|
|
66
38
|
defaultConfig {
|
|
67
|
-
minSdkVersion safeExtGet("minSdkVersion", 24)
|
|
68
|
-
targetSdkVersion safeExtGet("targetSdkVersion", 33)
|
|
69
39
|
versionCode 1
|
|
70
40
|
versionName "0.1.0"
|
|
71
41
|
}
|
|
72
42
|
lintOptions {
|
|
73
43
|
abortOnError false
|
|
74
44
|
}
|
|
75
|
-
publishing {
|
|
76
|
-
singleVariant("release") {
|
|
77
|
-
withSourcesJar()
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
repositories {
|
|
83
|
-
mavenCentral()
|
|
84
45
|
}
|
|
85
46
|
|
|
86
47
|
dependencies {
|
|
87
48
|
implementation project(':expo-modules-core')
|
|
88
|
-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${getKotlinVersion()}"
|
|
89
49
|
implementation "com.linecorp.linesdk:linesdk:latest.release"
|
|
90
50
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-line-login",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Integrate LINE login to Expo App",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"homepage": "https://github.com/stanma9107/expo-line-login#readme",
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/react": "^18.0.25",
|
|
33
|
-
"expo-module-scripts": "^3.
|
|
33
|
+
"expo-module-scripts": "^3.5.2",
|
|
34
34
|
"expo-modules-core": "^1.12.26",
|
|
35
35
|
"husky": "^8.0.3"
|
|
36
36
|
},
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
File without changes
|
package/android/.idea/gradle.xml
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="GradleSettings">
|
|
4
|
-
<option name="linkedExternalProjectsSettings">
|
|
5
|
-
<GradleProjectSettings>
|
|
6
|
-
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
|
7
|
-
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
|
8
|
-
<option name="resolveExternalAnnotations" value="false" />
|
|
9
|
-
</GradleProjectSettings>
|
|
10
|
-
</option>
|
|
11
|
-
</component>
|
|
12
|
-
</project>
|
package/android/.idea/misc.xml
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
|
4
|
-
<component name="ProjectRootManager">
|
|
5
|
-
<output url="file://$PROJECT_DIR$/build/classes" />
|
|
6
|
-
</component>
|
|
7
|
-
<component name="ProjectType">
|
|
8
|
-
<option name="id" value="Android" />
|
|
9
|
-
</component>
|
|
10
|
-
</project>
|
package/android/.idea/vcs.xml
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|