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

Commit e6c78e3e 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" am: c31e88ac

Change-Id: Ib7db789690b64ca00905577ee9ed7ed993293967
parents c40cb4c0 c31e88ac
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
@@ -87,7 +87,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