[CI] Upload mappings to artifact (#85)
This commit is contained in:
parent
7acf4493ed
commit
e96f3607ac
|
|
@ -51,6 +51,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: manager-unsigned
|
name: manager-unsigned
|
||||||
path: "app/build/outputs/apk/release/*.apk"
|
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
|
- name: Post to channel
|
||||||
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
if: ${{ github.event_name != 'pull_request' && success() && github.ref == 'refs/heads/master' }}
|
||||||
env:
|
env:
|
||||||
|
|
|
||||||
|
|
@ -20,8 +20,3 @@
|
||||||
# hide the original source file name.
|
# hide the original source file name.
|
||||||
#-renamesourcefileattribute SourceFile
|
#-renamesourcefileattribute SourceFile
|
||||||
-keep class io.github.lsposed.manager.Constants { *; }
|
-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.* { *; }
|
|
||||||
|
|
@ -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