Java 1.8およびAndroid 7(APIレベル24)のAndroid Studio 2.2.3を使用して、「新しい」Java 8機能Stream
をテストするプロジェクトを設定するだけです。Android 6.0でJava 8 Stream APIを使用する方法
ここに私のGradleファイル:ここで
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.radinator.myproject"
minSdkVersion 24
targetSdkVersion 24
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.2.0'
testCompile 'junit:junit:4.12'
}
コード:
import java.util.stream.*;
public class MainActivity extens Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_mainactivity);
}
void foo(){
List<String> myList = Arrays.asList("one", "two", "three", "four", "five", "six");
myList.stream()
.filter(s -> s.length() > 0)
.collect(Collectors.toList())
}
}
Androidのメーカーは "Usage of API documented as @since 1.8+
" のGradleは、私はこのメッセージを取得しない理由はなく、すべてをコンパイルしている私に言っラインmyList.stream()...
を強調?私はこの機能がJava 8で導入され、Android API Leve 24以上で利用できると考えましたか?
どうすればこの混乱を解決できますか?事前に
おかげ
これはおそらく(モジュールのランレベルを設定するのに役立ちます):http://stackoverflow.com/questions/37787079/intellij-unable-to-use-newer-java-8-classes-error-usage-of-api -documented – Kelo
アンドロイドスタジオがこのオプションを持っていたら私はそれを変更しました。悲しいことに、このようなオプションはありません(sdkのバージョンとビルドツールのバージョンのみをコンパイルします) – Radinator
APIレベル24 = Nougat、Android 7.0-7。1.1、APIレベル23 = Marshmallow、Android 6.0(.1) – Sartorius