Gradle 3.0 support

I’ve tried to build application with gradle 3.0. And build failed with message:

Failed to apply plugin [id ‘moe’]
The ‘moe’ plugin requires Gradle version 2.5 or higher! Current version is 3.0.

I use

buildscript {
  repositories {
    jcenter()
  }
dependencies {
  classpath group: 'org.multi-os-engine', name: 'moe-gradle', version: '1.1.+'
  }
}
apply plugin: 'moe'

So, Does gradle 3 supported? Is there workaround to avoid gradle version check?

Dear zufarfakhurtdinov,

This is a bug and will be fixed soon, however Gradle 3.0 is currently not supported officially.

Ok, thank you. I’m waiting for fix!

Dear zufarfakhurtdinov,

The fix is published, you may need to invoke ./gradlew --refresh-dependencies before using your project, otherwise Gradle might not see the new MOE plugin.

Good news! It’s work! Thank you!