Cleanup + Prettier
This commit is contained in:
parent
e03e03f841
commit
ccb5e48820
|
@ -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: {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
||||
);
|
||||
|
|
|
@ -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 };
|
||||
|
|
Loading…
Reference in New Issue