Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd4ac23b authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Make change and version bump to r_aml_300900000 for mainline module file:...

Make change and version bump to r_aml_300900000 for mainline module file: packages/Tethering/apex/manifest.json

Change-Id: If7bac499f32dabcb20f7482ac9e40bb73cd785db
parents 3771ce1a 4a127ead
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
{
  "name": "com.android.extservices",
  "version": 300803100
  "version": 300900000
}
+1 −1
Original line number Diff line number Diff line
{
  "name": "com.android.permission",
  "version": 300803100
  "version": 300900000
}
+1 −1
Original line number Diff line number Diff line
{
  "name": "com.android.os.statsd",
  "version": 300803100
  "version": 300900000
}
+10 −6
Original line number Diff line number Diff line
@@ -1279,6 +1279,9 @@ public class ResolverActivity extends Activity implements
    }

    private void safelyStartActivityInternal(TargetInfo cti) {
        // If the target is suspended, the activity will not be successfully launched.
        // Do not unregister from package manager updates in this case
        if (!cti.isSuspended()) {
            if (mPersonalPackageMonitor != null) {
                mPersonalPackageMonitor.unregister();
            }
@@ -1286,6 +1289,7 @@ public class ResolverActivity extends Activity implements
                mWorkPackageMonitor.unregister();
            }
            mRegistered = false;
        }
        // If needed, show that intent is forwarded
        // from managed profile to owner or other way around.
        if (mProfileSwitchMessageId != -1) {
+6 −0
Original line number Diff line number Diff line
@@ -25,4 +25,10 @@
        android:fillBefore="true" android:fillAfter="true"
        android:interpolator="@interpolator/fast_out_slow_in"
        android:duration="@android:integer/config_screen_rotation_total_180" />
    <alpha android:fromAlpha="0.0" android:toAlpha="1.0"
        android:fillEnabled="true"
        android:fillBefore="true" android:fillAfter="true"
        android:interpolator="@interpolator/screen_rotation_alpha_in"
        android:startOffset="@android:integer/config_screen_rotation_fade_in_delay"
        android:duration="@android:integer/config_screen_rotation_fade_in" />
</set>
Loading