私はいくつかのモジュール(自分のライブラリなどをインポートする)を持っていますが、すべてのソースを1つのモジュールにダンプする代わりに、それらを呼び出すモジュールが必要です。複数のAndroidアプリを統合する
ただし、新しい統合モジュールからActivity
を呼び出す場合、Androidスタジオはアクティビティクラスを見つけることができません。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.selector_activity);
getSupportActionBar().hide();
Button button1= (Button) findViewById(R.id.selector_Button1);
button1.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(getApplicationContext(), com.myCompany.referenceApp.activity.SplashActivity.class);
startActivity(intent);
}
});
}
これは、統合されたモジュールのbuild.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.mycompany.integratedgui"
minSdkVersion 21
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile project(path: ':referenceapp')
}
Androidのメーカーは、常にコンパイルに失敗すると、プロンプトモジュールの依存関係を含めて、「Altキーを入力してください」「referenceappを」、そして追加し続けるですすでにビルドファイルにある文compile project(path: ':referenceapp')
。
この統合されたアプリには、さまざまなアプリケーションを含めることができますが、個別に呼び出すにはどうすればよいですか。