On 19 September, 2018 - Dirk Hohndel wrote: > > > On Sep 19, 2018, at 8:54 PM, Bill Perry > > <[email protected]> wrote: > > > > On 09/19/2018 09:13 PM, Dirk Hohndel wrote: > >> How do you feel with signing your app with a different certificate. Did > >> you change the name? > > > > I have no feelings about it. > > Grr. Don't respond on the phone, Dirk. > > The question was supposed to be "how do you DEAL with signing your app" > > i.e., did you give your app a different name so you wouldn't have a signature > conflict when installing it? >
This is how I do it: commit eb42e3c0190acf0e03c57c83f0ef3f04c1f05599 Author: Anton Lundin <[email protected]> Date: Wed Jun 20 20:03:46 2018 +0200 JUNK: Rename mobile app for local dual install diff --git a/android-mobile/AndroidManifest.xml b/android-mobile/AndroidManifest.xml index 0a591eb99..c655a3a89 100644 --- a/android-mobile/AndroidManifest.xml +++ b/android-mobile/AndroidManifest.xml @@ -1,6 +1,6 @@ <?xml version='1.0' encoding='utf-8'?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" - package="org.subsurfacedivelog.mobile" + package="org.subsurfacedivelog.mobile.anton" android:installLocation="auto" android:versionCode="@BUILD_NR@" android:versionName="@SUBSURFACE_MOBILE_VERSION@" > @@ -8,12 +8,12 @@ <application android:name="org.qtproject.qt5.android.bindings.QtApplication" android:hardwareAccelerated="true" - android:label="@string/app_name" + android:label="Anton-ssrf" android:icon="@drawable/subsurface_mobile_icon" > <activity android:name="org.qtproject.qt5.android.bindings.QtActivity" android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|locale|fontScale|keyboard|keyboardHidden|navigation" - android:label="@string/app_name" + android:label="Anton-ssrf" android:theme="@style/AppTheme" android:launchMode="singleTop" android:windowSoftInputMode="adjustResize" That way I can see which is which, and I can have them both installed at the same time. Bill: I suggest you do something equivalent if you're planing on playing around both with the official and your own builds of subsurface mobile. //Anton -- Anton Lundin +46702-161604 _______________________________________________ subsurface mailing list [email protected] http://lists.subsurface-divelog.org/cgi-bin/mailman/listinfo/subsurface
