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:
28
28
- uses : actions/setup-java@v3
29
29
with :
30
30
distribution : ' temurin'
31
- java-version : ' 8 '
31
+ java-version : ' 11 '
32
32
- uses : android-actions/setup-android@v2
33
33
- name : Android Deps
34
34
run : |
35
- sdkmanager --uninstall "cmake;3.18.1" || echo "skipped"
36
- sdkmanager --install "cmake;3.10.2.4988404"
37
35
rm -rf ~/Library/Android/sdk/ndk || echo "skipped"
38
36
rm -rf ~/Library/Android/sdk/ndk-bundle || echo "skipped"
39
37
- uses : nttld/setup-ndk@v1
Original file line number Diff line number Diff line change 12
12
- uses : actions/checkout@v3
13
13
- uses : actions/setup-node@v3
14
14
with :
15
- node-version : ' 12 '
15
+ node-version : ' 16 '
16
16
registry-url : https://registry.npmjs.org/
17
17
- run : yarn install
18
18
- run : npm publish --access public
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ android {
174
174
def abi = output. getFilter(OutputFile . ABI )
175
175
if (abi != null ) { // null for the universal-debug, universal-release variants
176
176
output. versionCodeOverride =
177
- versionCodes . get(abi) * 1048576 + defaultConfig . versionCode
177
+ defaultConfig . versionCode * 1000 + versionCodes . get(abi)
178
178
}
179
179
180
180
}
@@ -215,7 +215,7 @@ dependencies {
215
215
// Run this once to be able to run the application with BUCK
216
216
// puts all compile dependencies into folder libs for BUCK to use
217
217
task copyDownloadableDepsToLibs (type : Copy ) {
218
- from configurations. compile
218
+ from configurations. implementation
219
219
into ' libs'
220
220
}
221
221
Original file line number Diff line number Diff line change 4
4
5
5
<uses-permission android : name =" android.permission.SYSTEM_ALERT_WINDOW" />
6
6
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
+
8
11
</manifest >
Original file line number Diff line number Diff line change 1
1
<resources >
2
2
3
3
<!-- Base application theme. -->
4
- <style name =" AppTheme" parent =" Theme.AppCompat.Light .NoActionBar" >
4
+ <style name =" AppTheme" parent =" Theme.AppCompat.DayNight .NoActionBar" >
5
5
<!-- Customize your theme here. -->
6
6
<item name =" android:textColor" >#000000</item >
7
7
</style >
Original file line number Diff line number Diff line change 9
9
"start" : " react-native start" ,
10
10
"test" : " jest" ,
11
11
"test:android" : " detox test --configuration android" ,
12
- "build:android" :" detox build --configuration android " ,
12
+ "build:android" : " detox build --configuration android " ,
13
13
"test:ios" : " detox test --configuration ios" ,
14
- "build:ios" :" detox build --configuration ios "
14
+ "build:ios" : " detox build --configuration ios "
15
15
},
16
16
"jest" : {
17
17
"preset" : " react-native" ,
25
25
]
26
26
},
27
27
"dependencies" : {
28
- "react" : " 16.13.1 " ,
29
- "react-native" : " 0.63.4 " ,
28
+ "react" : " 17.0.2 " ,
29
+ "react-native" : " 0.65.2 " ,
30
30
"react-native-fs" : " ^2.18.0"
31
31
},
32
32
"devDependencies" : {
37
37
"detox" : " ^18.20.1" ,
38
38
"jest" : " ^26.6.3" ,
39
39
"jest-circus" : " ^27.0.6" ,
40
- "metro-react-native-babel-preset" : " ^0.64 .0"
40
+ "metro-react-native-babel-preset" : " ^0.66 .0"
41
41
}
42
42
}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-native-fast-openpgp" ,
3
- "version" : " 2.2.4 " ,
3
+ "version" : " 2.2.5 " ,
4
4
"description" : " library for use openPGP" ,
5
5
"main" : " lib/commonjs/index" ,
6
6
"module" : " lib/module/index" ,
You can’t perform that action at this time.
0 commit comments