Skip to content

Commit fe33b6d

Browse files
committed
updated version
1 parent 8f0911e commit fe33b6d

File tree

8 files changed

+1745
-2739
lines changed

8 files changed

+1745
-2739
lines changed

.github/workflows/android.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,10 @@ jobs:
2828
- uses: actions/setup-java@v3
2929
with:
3030
distribution: 'temurin'
31-
java-version: '8'
31+
java-version: '11'
3232
- uses: android-actions/setup-android@v2
3333
- name: Android Deps
3434
run: |
35-
sdkmanager --uninstall "cmake;3.18.1" || echo "skipped"
36-
sdkmanager --install "cmake;3.10.2.4988404"
3735
rm -rf ~/Library/Android/sdk/ndk || echo "skipped"
3836
rm -rf ~/Library/Android/sdk/ndk-bundle || echo "skipped"
3937
- uses: nttld/setup-ndk@v1

.github/workflows/npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v3
1313
- uses: actions/setup-node@v3
1414
with:
15-
node-version: '12'
15+
node-version: '16'
1616
registry-url: https://registry.npmjs.org/
1717
- run: yarn install
1818
- run: npm publish --access public

example/android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ android {
174174
def abi = output.getFilter(OutputFile.ABI)
175175
if (abi != null) { // null for the universal-debug, universal-release variants
176176
output.versionCodeOverride =
177-
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
177+
defaultConfig.versionCode * 1000 + versionCodes.get(abi)
178178
}
179179

180180
}
@@ -215,7 +215,7 @@ dependencies {
215215
// Run this once to be able to run the application with BUCK
216216
// puts all compile dependencies into folder libs for BUCK to use
217217
task copyDownloadableDepsToLibs(type: Copy) {
218-
from configurations.compile
218+
from configurations.implementation
219219
into 'libs'
220220
}
221221

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@
44

55
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
66

7-
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
7+
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning">
8+
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
9+
</application>
10+
811
</manifest>

example/android/app/src/main/res/values/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<resources>
22

33
<!-- Base application theme. -->
4-
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
4+
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
55
<!-- Customize your theme here. -->
66
<item name="android:textColor">#000000</item>
77
</style>

example/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"start": "react-native start",
1010
"test": "jest",
1111
"test:android": "detox test --configuration android",
12-
"build:android":"detox build --configuration android ",
12+
"build:android": "detox build --configuration android ",
1313
"test:ios": "detox test --configuration ios",
14-
"build:ios":"detox build --configuration ios "
14+
"build:ios": "detox build --configuration ios "
1515
},
1616
"jest": {
1717
"preset": "react-native",
@@ -25,8 +25,8 @@
2525
]
2626
},
2727
"dependencies": {
28-
"react": "16.13.1",
29-
"react-native": "0.63.4",
28+
"react": "17.0.2",
29+
"react-native": "0.65.2",
3030
"react-native-fs": "^2.18.0"
3131
},
3232
"devDependencies": {
@@ -37,6 +37,6 @@
3737
"detox": "^18.20.1",
3838
"jest": "^26.6.3",
3939
"jest-circus": "^27.0.6",
40-
"metro-react-native-babel-preset": "^0.64.0"
40+
"metro-react-native-babel-preset": "^0.66.0"
4141
}
4242
}

example/yarn.lock

Lines changed: 1730 additions & 2725 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-fast-openpgp",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"description": "library for use openPGP",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

0 commit comments

Comments
 (0)