Skip to content Skip to sidebar Skip to footer

Android Studio : Error Injecting While Appengine Backend Generation

I've installed maven 3.1.1 and using app-engine-sdk 1.8.9 [INFO] Scanning for projects... [INFO] [INFO] ---

Solution 1:

It seems the issue is because of maven 3.1.X with appengine-maven-plugin 1.8.0

Check this

https://groups.google.com/forum/#!msg/google-appengine/FgZrGAJr0T8/VaEXYgPUX7cJ

and reported issue for the same is here

https://code.google.com/p/appengine-maven-plugin/issues/detail?id=31

If you need to use the plug-in with Maven 3.1.0 then you can use the latest 1.8.3 version of plugin instead of 1.8.0 .

<plugin><groupId>com.google.appengine</groupId><artifactId>appengine-maven-plugin</artifactId><version>1.8.3</version></plugin>

Post a Comment for "Android Studio : Error Injecting While Appengine Backend Generation"