@june24/expo-pdf-reader 0.1.0 → 0.1.1
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
|
@@ -2,15 +2,15 @@ apply plugin: 'com.android.library'
|
|
|
2
2
|
apply plugin: 'kotlin-android'
|
|
3
3
|
|
|
4
4
|
group = 'expo.modules.pdfreader'
|
|
5
|
-
version = '0.1.
|
|
5
|
+
version = '0.1.1'
|
|
6
6
|
|
|
7
7
|
android {
|
|
8
|
-
compileSdkVersion
|
|
8
|
+
compileSdkVersion 36
|
|
9
9
|
defaultConfig {
|
|
10
10
|
minSdkVersion 24
|
|
11
|
-
targetSdkVersion
|
|
11
|
+
targetSdkVersion 36
|
|
12
12
|
versionCode 1
|
|
13
|
-
versionName "0.1.
|
|
13
|
+
versionName "0.1.1"
|
|
14
14
|
}
|
|
15
15
|
lintOptions {
|
|
16
16
|
abortOnError false
|
|
@@ -19,5 +19,5 @@ android {
|
|
|
19
19
|
|
|
20
20
|
dependencies {
|
|
21
21
|
implementation project(':expo-modules-core')
|
|
22
|
-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:
|
|
22
|
+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:2.0.0"
|
|
23
23
|
}
|
|
@@ -9,10 +9,10 @@ Pod::Spec.new do |s|
|
|
|
9
9
|
s.description = package['description']
|
|
10
10
|
s.license = package['license']
|
|
11
11
|
s.author = package['author']
|
|
12
|
-
s.homepage = package['homepage']
|
|
13
|
-
s.platform = :ios, '
|
|
14
|
-
s.swift_version = '5.
|
|
15
|
-
s.source = { git: '
|
|
12
|
+
s.homepage = package['homepage'] || 'https://github.com/june24/expo-pdf-reader'
|
|
13
|
+
s.platform = :ios, '15.1'
|
|
14
|
+
s.swift_version = '5.9'
|
|
15
|
+
s.source = { git: package['homepage'] || 'git@gitlab.com:june_241/expo-pdf-reader.git', tag: "v#{s.version}" }
|
|
16
16
|
s.static_framework = true
|
|
17
17
|
|
|
18
18
|
s.dependency 'ExpoModulesCore'
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@june24/expo-pdf-reader",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "A PDF reader for Expo",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "A PDF reader for Expo apps with annotation and zoom controls",
|
|
5
|
+
"homepage": "git@gitlab.com:june_241/expo-pdf-reader.git",
|
|
5
6
|
"main": "build/index.js",
|
|
6
7
|
"types": "build/index.d.ts",
|
|
7
8
|
"scripts": {
|
|
@@ -15,22 +16,23 @@
|
|
|
15
16
|
"react-native",
|
|
16
17
|
"expo",
|
|
17
18
|
"expo-module",
|
|
18
|
-
"pdf"
|
|
19
|
+
"pdf",
|
|
20
|
+
"pdf-reader"
|
|
19
21
|
],
|
|
20
22
|
"author": "User",
|
|
21
23
|
"license": "MIT",
|
|
22
24
|
"dependencies": {
|
|
23
|
-
"expo-modules-core": "^
|
|
25
|
+
"expo-modules-core": "^4.0.0"
|
|
24
26
|
},
|
|
25
27
|
"devDependencies": {
|
|
26
28
|
"expo-module-scripts": "^5.0.8",
|
|
27
29
|
"typescript": "^5.9.3",
|
|
28
30
|
"@types/react": "^19.2.9",
|
|
29
31
|
"react": "19.2.3",
|
|
30
|
-
"react-native": "0.
|
|
32
|
+
"react-native": "0.81.0"
|
|
31
33
|
},
|
|
32
34
|
"peerDependencies": {
|
|
33
|
-
"expo": "
|
|
35
|
+
"expo": ">=54.0.0",
|
|
34
36
|
"react": "*",
|
|
35
37
|
"react-native": "*"
|
|
36
38
|
}
|