Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add languages to ll #122

Closed
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion android_app/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,22 @@ android {

testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

signingConfigs {
debug {
storeFile file(System.getenv("HOME") + "/.android/debug.keystore")
storePassword "android"
keyAlias "androiddebugkey"
keyPassword "android"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
signingConfig signingConfigs.debug
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ public class Config {
public static final String serverUrl = "https://vpmkebx0cl.execute-api.us-east-2.amazonaws.com/api"; //TOSG BOX
// public static final String serverUrl = "http://192.168.7.117:8080";

public static final Boolean useDevServer = false;
public static final String devServerUrl = "/dev";
public static final Boolean useDevServer = true;
public static final String devServerUrl = "/dev4";
SusannaShu marked this conversation as resolved.
Show resolved Hide resolved
}
1 change: 1 addition & 0 deletions android_app/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<item>Spanish</item>
<item>Hebrew</item>
<item>Dutch</item>
<item>French</item>
<!-- Add more languages here -->
</string-array>

Expand Down
2 changes: 1 addition & 1 deletion server/server_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
# Prod:
database_uri = "mongodb://localhost:27017"
server_port = 8080
path_modifier = ""
path_modifier = "/dev4"
SusannaShu marked this conversation as resolved.
Show resolved Hide resolved

# Dev:
#database_uri = "mongodb://localhost:27019"
Expand Down