Android StudioにNetbeans IDEからアンドロイドスタジオへの切り替えにいくつか問題がありました。私は古いプロジェクトがいくつかあります。しかし、今までの私のテストプロジェクトの一つにはまっています。netbeansをAndroidスタジオに移植する
自分の.jarをライブラリとしてライブラリにインポートしました。私の.jarにはユーザーインターフェイスが含まれていますが、アンドロイド用ではありません。 Android用にこのインターフェースを使用することはできますか?そうでなければ、XMLを移植する最良の方法は何ですか。私は友人とTeamViewingされている、彼はちょうど混乱を言った。私がこれまで行ってきた
ステップ:(私はいくつかの問題をhade)
- はLIB
- 編集build.gradle
- XMLと周りだけの混乱としての.jar追加少しでも実際にそこで行われた。
build.gradleは次のようになります。
プラグインを適用する:「com.android.application」今
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "nu.joeridamian.veganwords_anagram"
minSdkVersion 15
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 files('libs/anagrams.jar')
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
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 files('libs/anagrams.jar')
}
は、もちろん、私の最大の問題は、今ちょうど全体のアンドロイドのxmlステップをスキップし、ちょうど私の.jarを使用するには、ここから可能ですか? xmlを使用する最良の方法は何ですか?私が働いているから
テストプロジェクトは:https://github.com/gekkevliegtuig/Veganwords-Anagram