Back to project page secondary-dex-gradle.
The source code is released under:
Apache License
If you think the Android project secondary-dex-gradle listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.creativepsyco.secondarydex; //from ww w. j a v a 2 s . c om import android.app.Application; import com.github.creativepsyco.secondarydex.plugin.SecondaryDex; /** * Created by msk on 15/06/2014. */ public class MyApp extends Application{ @Override public void onCreate() { super.onCreate(); SecondaryDex.loadSecondaryDex(this); } }