[CI] Upload mappings to artifact (#85)

This commit is contained in:
tehcneko 2021-02-06 18:43:13 +08:00 committed by GitHub
parent 7acf4493ed
commit e96f3607ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 44 deletions

View File

@ -51,6 +51,11 @@ jobs:
with:
name: manager-unsigned
path: "app/build/outputs/apk/release/*.apk"
- name: Upload mappings
uses: actions/upload-artifact@v2
with:
name: mappings
path: "app/build/outputs/mapping"
- name: Post to channel
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
env:

View File

@ -19,9 +19,4 @@
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-keep class io.github.lsposed.manager.Constants { *; }
-keepnames class io.github.lsposed.manager.adapters.* { *; }
-keepnames class io.github.lsposed.manager.receivers.* { *; }
-keepnames class io.github.lsposed.manager.ui.* { *; }
-keepnames class io.github.lsposed.manager.utils.* { *; }
-keepnames class io.github.lsposed.manager.* { *; }
-keep class io.github.lsposed.manager.Constants { *; }

View File

@ -1,25 +0,0 @@
package android.content.pm;
import android.os.Binder;
import android.os.IBinder;
import android.os.IInterface;
import android.os.RemoteException;
import java.util.List;
public interface IPackageManager extends IInterface {
void forceDexOpt(String packageName) throws RemoteException;
boolean performDexOptMode(String packageName, boolean checkProfiles,
String targetCompilerFilter, boolean force, boolean bootComplete, String splitName) throws RemoteException;
void clearApplicationProfileData(String packageName) throws RemoteException;
List<String> getAllPackages() throws RemoteException;
boolean runBackgroundDexoptJob(List<String> packageNames) throws RemoteException;
abstract class Stub extends Binder implements IPackageManager {
public static IPackageManager asInterface(IBinder obj) {
throw new UnsupportedOperationException();
}
}
}

View File

@ -1,13 +0,0 @@
package android.os;
public interface IPowerManager extends IInterface {
void reboot(boolean confirm, String reason, boolean wait) throws RemoteException;
abstract class Stub extends Binder implements IPowerManager {
public static IPowerManager asInterface(IBinder obj) {
throw new UnsupportedOperationException();
}
}
}