Skip to content

Commit

Permalink
dCloud 1.5.6, google play fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Simbad Marino authored and Simbad Marino committed Jul 2, 2023
1 parent 87d209f commit c5c39e0
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ android {
applicationId "com.justshare"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.5.5"
versionCode 3
versionName "1.5.6"

externalNativeBuild {
ndkBuild {
Expand Down
Binary file modified android/app/src/main/res/drawable/splashscreen_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
buildToolsVersion = "30.0.2"
minSdkVersion = 24
compileSdkVersion = 31
targetSdkVersion = 29 //TODO: Anything equal or higher than 30 will fail due to Android blocking p2p unsecure transactions. Need to workaround like
targetSdkVersion = 33 //TODO: Anything equal or higher than 30 will fail due to Android blocking p2p unsecure transactions. Need to workaround like NEWS(June 23rd 2023): Attemping to fix with proposal from community: https://github.com/golang/go/issues/40569#issuecomment-1600898227
kotlinVersion = "1.6.0"
}
repositories {
Expand Down
Binary file modified assets/dCloudLogo_splashScreen_noBackground.xcf
Binary file not shown.
Binary file modified assets/splashscreen_image.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion screens/Browser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ function addFileToBTFS(file)
.then((dirFiles) => {
if (currentDir !== route?.params?.prevDir) {
const filteredFiles = dirFiles.filter(
(file) => file !== 'RCTAsyncLocalStorage' && file != 'ReactNativeDevBundle.js'
(file) => file !== 'RCTAsyncLocalStorage' && file != 'ReactNativeDevBundle.js' && file != '.expo-internal'
);
const filesProms = filteredFiles.map((fileName) =>
FileSystem.getInfoAsync(currentDir + '/' + fileName)
Expand Down
3 changes: 1 addition & 2 deletions screens/TerminalScreen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Alert, View, Text, StyleSheet, Button, Platform, NativeModules } from '
export default class App extends React.Component {
render() {

const titleText = "Work in progres (•̀ᴗ•́ )و. \n\n\nThanks for using dCloud!\n\n(∩`-´)⊃━☆゚.*・。゚\n\n v1.5.4"
const titleText = "Work in progres (•̀ᴗ•́ )و. \n\n\nThanks for using dCloud!\n\n(∩`-´)⊃━☆゚.*・。゚\n"



Expand All @@ -14,7 +14,6 @@ export default class App extends React.Component {
<Text style={styles.titleText} >
{titleText}
</Text>
<Text >{Platform.OS}</Text>



Expand Down

0 comments on commit c5c39e0

Please sign in to comment.