You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- removed location background mode (which is currently not used) (#780)
- perform showing upload path in AutoUploadSettings on main thread
- fixed resign script: now signing share extension too, adopted documentation
- new build number
declare -a MOBILEPROVISIONS=( "$DISTRIBUTION_MOBILEPROVISION""$FILEPROVIDER_MOBILEPROVISION""$INTENT_MOBILEPROVISION" );
69
-
declare -a ENTITLEMENTS=( "ownCloud.entitlements""ownCloud_File_Provider.entitlements""ownCloud_Intents.entitlements" );
70
-
declare -a LOCATIONS=( "$APPDIR""$APPDIR/PlugIns/ownCloud File Provider.appex""$APPDIR/PlugIns/ownCloud Intents.appex" );
69
+
declare -a MOBILEPROVISIONS=( "$DISTRIBUTION_MOBILEPROVISION""$FILEPROVIDER_MOBILEPROVISION""$INTENT_MOBILEPROVISION""$SHAREEXTENSION_MOBILEPROVISION");
70
+
declare -a ENTITLEMENTS=( "ownCloud.entitlements""ownCloud_File_Provider.entitlements""ownCloud_Intents.entitlements""ownCloud_Share_Extension.entitlements");
71
+
declare -a LOCATIONS=( "$APPDIR""$APPDIR/PlugIns/ownCloud File Provider.appex""$APPDIR/PlugIns/ownCloud Intents.appex""$APPDIR/PlugIns/ownCloud Share Extension.appex");
71
72
declare -a BUNDLEIDS=();
72
73
73
74
# Delete previous temporal app folder if exist
@@ -92,7 +93,7 @@ do
92
93
if [ !-f"./$a" ];then
93
94
echo"${WARN}Error: can't find $a in the current directory${NC}"
0 commit comments