[CI] Upload mappings to artifact (#85)
This commit is contained in:
parent
7acf4493ed
commit
e96f3607ac
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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 { *; }
|
||||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue