Cleanup + Prettier

This commit is contained in:
Diego Mello 2023-06-22 17:24:42 -03:00
parent e03e03f841
commit ccb5e48820
4 changed files with 4 additions and 7 deletions

View File

@ -30,15 +30,13 @@ module.exports = {
'android.debug': {
type: 'android.apk',
binaryPath: 'android/app/build/outputs/apk/play/debug/app-play-debug.apk',
build:
'cd android ; ./gradlew assemblePlayDebug assemblePlayDebugAndroidTest -DtestBuildType=debug ; cd -',
build: 'cd android ; ./gradlew assemblePlayDebug assemblePlayDebugAndroidTest -DtestBuildType=debug ; cd -',
reversePorts: [8081]
},
'android.release': {
type: 'android.apk',
binaryPath: 'android/app/build/outputs/apk/play/release/app-play-release.apk',
build:
'cd android ; ./gradlew assemblePlayRelease assemblePlayReleaseAndroidTest -DtestBuildType=release ; cd -'
build: 'cd android ; ./gradlew assemblePlayRelease assemblePlayReleaseAndroidTest -DtestBuildType=release ; cd -'
}
},
devices: {

View File

@ -105,7 +105,6 @@ android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion
// Can't set this, since it causes issues to Official flavor
namespace "chat.rocket.android"
defaultConfig {
applicationId APPLICATION_ID

View File

@ -26,7 +26,8 @@ const MarkdownPreview = ({ msg, numberOfLines = 1, style = [], testID }: IMarkdo
accessibilityLabel={m}
style={[styles.text, { color: themes[theme].bodyText }, ...style]}
numberOfLines={numberOfLines}
testID={testID || `markdown-preview-${m}`}>
testID={testID || `markdown-preview-${m}`}
>
{m}
</Text>
);

View File

@ -97,7 +97,6 @@ const handleSelectServer = function* handleSelectServer({ server, version, fetch
avatarETag: userRecord.avatarETag
};
} catch {
// search credentials on shared credentials (Experimental/Official)
const token = UserPreferences.getString(`${TOKEN_KEY}-${userId}`);
if (token) {
user = { token };