I'm creating nearly empty Android Studio project w...
# android
t
I'm creating nearly empty Android Studio project with minSdkVersion 10, but its gradle sync was failed. https://gist.github.com/tateisu/143ef8ba903b22556fdf0e6d3001f9a3
t
I'd drop your gradle to 2.x and replace implements with... I think it was compile?
Even without Kotlin I've had issues targeting SDK 14 and lower with Gradle 3
It's supposed to not matter but...
t
thanks. I've try following setting, but result was not changed.
Copy code
# in gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
# in build.gradle (project)
classpath 'com.android.tools.build:gradle:2.3.3'
# in build.gradle (module)
buildToolsVersion "25.0.3"
these setting could be used for non-kotlin project, but can't be used with kotlin.