mirror of
https://github.com/Suwayomi/Suwayomi-Server.git
synced 2026-07-14 08:14:34 -05:00
android support! thanks to TachiWeb devs.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package android.support.multidex;
|
||||
|
||||
import android.content.Context;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* MultiDex that does nothing.
|
||||
*/
|
||||
public class MultiDex {
|
||||
private static Logger logger = LoggerFactory.getLogger(MultiDex.class);
|
||||
|
||||
public static void install(Context context) {
|
||||
logger.debug("Ignoring MultiDex installation attempt for app: {}", context.getPackageName());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user