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

Commit 82d23570 authored by Mark Chien's avatar Mark Chien Committed by Automerger Merge Worker
Browse files

Merge "Change tethering file structure to respect its package name" into...

Merge "Change tethering file structure to respect its package name" into rvc-dev-plus-aosp am: 223418c7

Change-Id: Id0a5e49f9a25d573a9bde75b4cfd33ad21a92862
parents 5d7cc41c 223418c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -43,7 +43,7 @@
        android:process="com.android.networkstack.process"
        android:extractNativeLibs="false"
        android:persistent="true">
        <service android:name="com.android.server.connectivity.tethering.TetheringService"
        <service android:name="com.android.networkstack.tethering.TetheringService"
                 android:permission="android.permission.MAINLINE_NETWORK_STACK"
                 android:exported="true">
            <intent-filter>
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
          android:process="system">
    <uses-sdk android:minSdkVersion="29" android:targetSdkVersion="29" />
    <application>
        <service android:name="com.android.server.connectivity.tethering.TetheringService"
        <service android:name="com.android.networkstack.tethering.TetheringService"
                 android:process="system"
                 android:permission="android.permission.MAINLINE_NETWORK_STACK"
                 android:exported="true">
+1 −1
Original line number Diff line number Diff line
# Keep class's integer static field for MessageUtils to parsing their name.
-keep class com.android.server.connectivity.tethering.Tethering$TetherMasterSM {
-keep class com.android.networkstack.tethering.Tethering$TetherMasterSM {
    static final int CMD_*;
    static final int EVENT_*;
}
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@
                        TYPE_MOBILE_HIPRI is appended.

         For other changes applied to this list, now and in the future, see
         com.android.server.connectivity.tethering.TetheringConfiguration.
         com.android.networkstack.tethering.TetheringConfiguration.

         Note also: the order of this is important. The first upstream type
         for which a satisfying network exists is used.
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@
 * limitations under the License.
 */

package com.android.server.connectivity.tethering;
package com.android.networkstack.tethering;

import static android.net.TetheringManager.TETHERING_WIFI;

Loading