remove '-dev' suffix from names, tackles #444

This commit is contained in:
B. Petersen 2019-01-22 02:34:42 +01:00
parent b0d7421458
commit c067c2b700
No known key found for this signature in database
GPG key ID: 3B88E92DEA8E9AFC
4 changed files with 7 additions and 7 deletions

View file

@ -34,7 +34,7 @@
<application android:name=".ApplicationContext" <application android:name=".ApplicationContext"
android:icon="@mipmap/ic_launcher_dev" android:icon="@mipmap/ic_launcher_dev"
android:label="Delta Chat dev" android:label="Delta Chat"
android:supportsRtl="true" android:supportsRtl="true"
tools:replace="android:allowBackup" tools:replace="android:allowBackup"
android:allowBackup="false" android:allowBackup="false"
@ -90,7 +90,7 @@
</activity> </activity>
<activity android:name=".ConversationListActivity" <activity android:name=".ConversationListActivity"
android:label="Delta Chat dev" android:label="Delta Chat"
android:launchMode="singleTask" android:launchMode="singleTask"
android:theme="@style/TextSecure.LightNoActionBar" android:theme="@style/TextSecure.LightNoActionBar"
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"

View file

@ -188,9 +188,9 @@ android {
useLibrary 'org.apache.http.legacy' useLibrary 'org.apache.http.legacy'
defaultConfig { defaultConfig {
versionCode 412 versionCode 537
versionName "0.98.2" versionName "0.100.0"
applicationId "chat.delta.androidii" applicationId "com.b44t.messenger.beta"
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 25 targetSdkVersion 25

View file

@ -26,7 +26,7 @@
<TextView style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title" <TextView style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:text="Delta Chat dev" android:text="Delta Chat"
android:layout_alignParentStart="true" android:layout_alignParentStart="true"
android:layout_alignParentLeft="true" android:layout_alignParentLeft="true"
android:layout_centerVertical="true" android:layout_centerVertical="true"

View file

@ -61,7 +61,7 @@ public class ApplicationDcContext extends DcContext {
public volatile boolean isScreenOn = false; public volatile boolean isScreenOn = false;
public ApplicationDcContext(Context context) { public ApplicationDcContext(Context context) {
super("android-dev"); super("Android");
this.context = context; this.context = context;
File dbfile = new File(context.getFilesDir(), "messenger.db"); File dbfile = new File(context.getFilesDir(), "messenger.db");