Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
jerson committed Jun 19, 2022
1 parent 8f0911e commit fe33b6d
Show file tree
Hide file tree
Showing 8 changed files with 1,745 additions and 2,739 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,10 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
java-version: '11'
- uses: android-actions/setup-android@v2
- name: Android Deps
run: |
sdkmanager --uninstall "cmake;3.18.1" || echo "skipped"
sdkmanager --install "cmake;3.10.2.4988404"
rm -rf ~/Library/Android/sdk/ndk || echo "skipped"
rm -rf ~/Library/Android/sdk/ndk-bundle || echo "skipped"
- uses: nttld/setup-ndk@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '12'
node-version: '16'
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: npm publish --access public
Expand Down
4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ android {
def abi = output.getFilter(OutputFile.ABI)
if (abi != null) { // null for the universal-debug, universal-release variants
output.versionCodeOverride =
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
defaultConfig.versionCode * 1000 + versionCodes.get(abi)
}

}
Expand Down Expand Up @@ -215,7 +215,7 @@ dependencies {
// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
from configurations.compile
from configurations.implementation
into 'libs'
}

Expand Down
5 changes: 4 additions & 1 deletion example/android/app/src/debug/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@

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

<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning" />
<application android:usesCleartextTraffic="true" tools:targetApi="28" tools:ignore="GoogleAppIndexingWarning">
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion example/android/app/src/main/res/values/styles.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:textColor">#000000</item>
</style>
Expand Down
10 changes: 5 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"start": "react-native start",
"test": "jest",
"test:android": "detox test --configuration android",
"build:android":"detox build --configuration android ",
"build:android": "detox build --configuration android ",
"test:ios": "detox test --configuration ios",
"build:ios":"detox build --configuration ios "
"build:ios": "detox build --configuration ios "
},
"jest": {
"preset": "react-native",
Expand All @@ -25,8 +25,8 @@
]
},
"dependencies": {
"react": "16.13.1",
"react-native": "0.63.4",
"react": "17.0.2",
"react-native": "0.65.2",
"react-native-fs": "^2.18.0"
},
"devDependencies": {
Expand All @@ -37,6 +37,6 @@
"detox": "^18.20.1",
"jest": "^26.6.3",
"jest-circus": "^27.0.6",
"metro-react-native-babel-preset": "^0.64.0"
"metro-react-native-babel-preset": "^0.66.0"
}
}
4,455 changes: 1,730 additions & 2,725 deletions example/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-fast-openpgp",
"version": "2.2.4",
"version": "2.2.5",
"description": "library for use openPGP",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit fe33b6d

Please sign in to comment.