以下を参照My Manifest.xmlアンドロイドで複数の "アプリケーションクラス"を使用するには?
私は既にApplicationLoaderを使用しています。
<application
android:name=".ui.ApplicationLoader"
android:allowBackup="true"
android:icon="@drawable/app_icon"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<application
android:name="org.abtollc.sdk.AbtoApplication"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
ここで、単一のプロジェクトで両方のアプリケーションクラスを使用したいですか?どのように可能です
org.abtollc.sdk.AbtoApplicationはサードパーティ製のライブラリです。
なぜ、複数の 'Application'クラスを使いたいのですか?あなたはどのようなシナリオですか?おそらく継承を使って解決することができます。 – azizbekian