We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0798fa2 + 1ea4f06 commit e2fe687Copy full SHA for e2fe687
app/build.gradle
@@ -24,11 +24,6 @@ android {
24
applicationIdSuffix ".debug"
25
versionNameSuffix "-debug"
26
}
27
- qa_test {
28
- initWith debug
29
- applicationIdSuffix ".test"
30
- versionNameSuffix "-test"
31
- }
32
release {
33
minifyEnabled false
34
app/src/main/java/ai/elimu/content_provider/BaseApplication.java
@@ -33,9 +33,6 @@ public Retrofit getRetrofit() {
public String getBaseUrl() {
Language language = SharedPreferencesHelper.getLanguage(getApplicationContext());
35
String url = "https://" + language.getIsoCode();
36
- if (!"release".equals(BuildConfig.BUILD_TYPE)) {
37
- url += ".test";
38
39
url += ".elimu.ai";
40
return url;
41
0 commit comments