renamed app to "Owncloud Beta" -> possibility to have both installed
authortobiasKaminsky <tobias@kaminsky.me>
Thu, 29 Oct 2015 16:42:26 +0000 (17:42 +0100)
committertobiasKaminsky <tobias@kaminsky.me>
Thu, 29 Oct 2015 16:42:26 +0000 (17:42 +0100)
AndroidManifest.xml
build.gradle
res/values/setup.xml

index 5d39e72..dacb8b8 100644 (file)
 
         <provider
             android:name=".providers.FileContentProvider"
-            android:authorities="@string/authority"
+            android:authorities="com.owncloud.beta"
             android:enabled="true"
             android:exported="true"
             android:label="@string/sync_string_files"
 
         <provider
             android:name=".ui.adapter.DiskLruImageCacheFileProvider"
-            android:authorities="com.owncloud.imageCache.provider">
+            android:authorities="com.owncloud.beta.imageCache.provider">
         </provider>
 
         <activity
index a0db018..b9ea96e 100644 (file)
@@ -29,6 +29,11 @@ dependencies {
 android {
     compileSdkVersion 22
     buildToolsVersion "22.0.1"
+
+    defaultConfig {
+        applicationId "com.owncloud.android.beta"
+    }
+
     sourceSets {
         main {
             manifest.srcFile 'AndroidManifest.xml'
index 76bdd9f..5c775e9 100644 (file)
@@ -1,12 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
 <resources>
     <!-- App name  and other strings-->
-    <string name="app_name">ownCloud</string>
+    <string name="app_name">Owncloud Beta</string>
     <string name="account_type">owncloud</string>      <!-- better if was a domain name; but changing it now would require migrate accounts when the app is updated -->
     <string name="authority">org.owncloud</string>     <!-- better if was the app package with ".provider" appended ; it identifies the provider -->
-    <string name ="db_file">owncloud.db</string>
+    <string name ="db_file">owncloud-beta.db</string>
     <string name ="db_name">ownCloud</string>
-    <string name ="data_folder">owncloud</string>
+    <string name ="data_folder">owncloud-beta</string>
     <string name ="log_name">Owncloud_</string>
     <string name ="default_display_name_for_root_folder">ownCloud</string>
     <string name ="user_agent">Mozilla/5.0 (Android) ownCloud-android/%1$s</string>