Sign in

CNLive Android Team / ExternalSharing · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • ExternalSharing
  • ..
  • out_shared
  • OutApplication.java
  • first
    013cc9dc
    袁思汶 authored
    2020-10-21 09:58:28 +0800  
    Browse Code »
OutApplication.java 372 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package com.cnlive.out_shared;

import android.app.Application;

import com.alibaba.android.arouter.launcher.ARouter;

import androidx.multidex.MultiDex;


public class OutApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        ARouter.openDebug();
        ARouter.init(this);
        MultiDex.install(this);
    }
}