StartApp-SDK / flutter-plugin

A Flutter plugin that uses native platform views to show ads from Start.io network.
Other
6 stars 3 forks source link

lambda expressions are not supported in -source 7 #1

Closed AnthonyRootdevs closed 2 years ago

AnthonyRootdevs commented 2 years ago

/.pub-cache/hosted/pub.dartlang.org/startapp_sdk-0.1.5/android/src/main/java/com/startapp/flutter/sdk/StartAppSdkPlugin.java:90: error: lambda expressions are not supported in -source 7 new StartAppViewFactory<>(() -> new StartAppFlutterBanner(bannerAdKeeper))); ^

(use -source 8 or higher to enable lambda expressions) 1 error

kayson3 commented 2 years ago

Have you solved it?

Am getting the same error

okstartapp commented 2 years ago

Solved in version 0.1.6

kayson3 commented 2 years ago

👍

AnthonyRootdevs commented 2 years ago

i was fixed this problem with this code

compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 }

kotlinOptions {
    jvmTarget = '1.8'
}

but now u dont need to chnage anything just update the package...

thank you Team StartApp for support

AnthonyRootdevs commented 2 years ago

Team StartApp for support