File tree Expand file tree Collapse file tree 8 files changed +1745
-2739
lines changed
Expand file tree Collapse file tree 8 files changed +1745
-2739
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
217217task copyDownloadableDepsToLibs (type : Copy ) {
218- from configurations. compile
218+ from configurations. implementation
219219 into ' libs'
220220}
221221
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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" ,
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" : {
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}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments