parse error in gradle - ExecException - android

My android app needs to do some work with SQL Server using JDBC,
So I've added sqlljdbc42.jar file in module,
But I got error in Build - Gradle, Below is my Gradle Console :
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAnimatedVectorDrawable2400Alpha1Library UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72400Alpha1Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42400Alpha1Library UP-TO-DATE
:app:prepareComAndroidSupportSupportVectorDrawable2400Alpha1Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl UP-TO-DATE
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources UP-TO-DATE
:app:mergeDebugResources UP-TO-DATE
:app:processDebugManifest UP-TO-DATE
:app:processDebugResources UP-TO-DATE
:app:generateDebugSources UP-TO-DATE
:app:processDebugJavaRes UP-TO-DATE
:app:compileDebugJava
:app:compileDebugNdk UP-TO-DATE
:app:compileDebugSources
:app:preDexDebug
AGPBI: {"kind":"SIMPLE","text":"PARSE ERROR:","position":{},"original":"PARSE ERROR:"}
AGPBI: {"kind":"SIMPLE","text":"unsupported class file version 52.0","position":{},"original":"unsupported class file version 52.0"}
AGPBI: {"kind":"SIMPLE","text":"...while parsing com/microsoft/sqlserver/jdbc/ActivityCorrelator.class","position":{},"original":"...while parsing com/microsoft/sqlserver/jdbc/ActivityCorrelator.class"}
AGPBI: {"kind":"SIMPLE","text":"1 error; aborting","position":{},"original":"1 error; aborting"}
BUILD FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:preDexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_40\bin\java.exe'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
and in Gradle Build windows I got This :
Error:Execution failed for task ':app:preDexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_40\bin\java.exe'' finished with non-zero exit value 1
Connections String is working fine and My MainActivity.java file contains :
public class MainActivity extends ActionBarActivity {
TextView tv;
Connection DbConn;
Statement stmt;
ResultSet reset;
#Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv = (TextView) findViewById(R.id.textView);
try {
Log.e("Inside the Try Block", "Pre - Done");
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance();
DbConn = DriverManager.getConnection("{connection string}");
Log.e("Connection","open");
stmt = DbConn.createStatement();
reset = stmt.executeQuery(" select * from Members");
tv.setText("User Name : "+reset.getString(1)+", Name : "+reset.getString(2));
DbConn.close();
} catch(Exception e) {
Log.e("Error connection", "" + e.getMessage());
e.printStackTrace();
}
}
}

The error is caused due to mismatching bytecode versions of the compiler and the classes in the included .jar archive
see got unsupported class file version 52 0 after including a module to a project for details
EDIT: using sqljdbc41.jar instead of sqljdbc42.jar should solve the issue

Related

AAPT: error: attribute android:extractNativeLibs not found

I tried to build APK from unity exported project
and then I encountered error
I need to build it using SDK version 22 (android 5.1)
the main problem is
Execution failed for task ':launcher:processDebugResources'
the detail as below
Configure project :launcher
WARNING: The option setting 'android.enableR8=false' is deprecated.
It will be removed in version 5.0 of the Android Gradle plugin.
You will no longer be able to disable R8
Task :unityLibrary:preBuild UP-TO-DATE
Task :launcher:preBuild UP-TO-DATE
Task :launcher:preDebugBuild UP-TO-DATE
Task :unityLibrary:preDebugBuild UP-TO-DATE
Task :unityLibrary:compileDebugAidl NO-SOURCE
Task :unityLibrary:packageDebugRenderscript NO-SOURCE
Task :launcher:generateDebugBuildConfig UP-TO-DATE
Task :unityLibrary:writeDebugAarMetadata UP-TO-DATE
Task :launcher:compileDebugAidl NO-SOURCE
Task :unityLibrary:compileDebugRenderscript NO-SOURCE
Task :launcher:compileDebugRenderscript NO-SOURCE
Task :unityLibrary:generateDebugResValues UP-TO-DATE
Task :launcher:javaPreCompileDebug UP-TO-DATE
Task :unityLibrary:generateDebugResources UP-TO-DATE
Task :launcher:checkDebugAarMetadata UP-TO-DATE
Task :launcher:generateDebugResValues UP-TO-DATE
Task :unityLibrary:packageDebugResources UP-TO-DATE
Task :launcher:generateDebugResources UP-TO-DATE
Task :unityLibrary:extractDeepLinksDebug UP-TO-DATE
Task :launcher:mergeDebugResources UP-TO-DATE
Task :unityLibrary:processDebugManifest UP-TO-DATE
Task :launcher:createDebugCompatibleScreenManifests UP-TO-DATE
Task :unityLibrary:compileDebugLibraryResources UP-TO-DATE
Task :launcher:extractDeepLinksDebug UP-TO-DATE
Task :launcher:processDebugMainManifest UP-TO-DATE
Task :launcher:processDebugManifest UP-TO-DATE
Task :launcher:processDebugManifestForPackage UP-TO-DATE
Task :unityLibrary:parseDebugLocalResources UP-TO-DATE
Task :launcher:mergeDebugNativeDebugMetadata NO-SOURCE
Task :launcher:mergeDebugShaders UP-TO-DATE
Task :launcher:compileDebugShaders NO-SOURCE
Task :launcher:generateDebugAssets UP-TO-DATE
Task :unityLibrary:generateDebugRFile UP-TO-DATE
Task :launcher:processDebugJavaRes NO-SOURCE
Task :unityLibrary:generateDebugBuildConfig UP-TO-DATE
Task :unityLibrary:javaPreCompileDebug UP-TO-DATE
Task :unityLibrary:compileDebugJavaWithJavac UP-TO-DATE
Task :unityLibrary:bundleLibCompileToJarDebug UP-TO-DATE
Task :unityLibrary:mergeDebugShaders UP-TO-DATE
Task :unityLibrary:compileDebugShaders NO-SOURCE
Task :unityLibrary:generateDebugAssets UP-TO-DATE
Task :unityLibrary:packageDebugAssets UP-TO-DATE
Task :unityLibrary:processDebugJavaRes NO-SOURCE
Task :unityLibrary:bundleLibResDebug NO-SOURCE
Task :unityLibrary:bundleLibRuntimeToJarDebug UP-TO-DATE
Task :unityLibrary:mergeDebugJniLibFolders UP-TO-DATE
Task :unityLibrary:mergeDebugNativeLibs UP-TO-DATE
Task :unityLibrary:stripDebugDebugSymbols UP-TO-DATE
WARNING: NDK was located by using ndk.dir property. This method is deprecated and will be removed in a future release. Please use android.ndkVersion or android.ndkPath in build.gradle to specify the NDK to use. https://developer.android.com/r/studio-ui/ndk-dir
NDK was located by using ndk.dir property. This method is deprecated and will be removed in a future release. Please use android.ndkVersion or android.ndkPath in build.gradle to specify the NDK to use. https://developer.android.com/r/studio-ui/ndk-dir
Task :unityLibrary:copyDebugJniLibsProjectOnly UP-TO-DATE
Task :launcher:processDebugResources FAILED
AGPBI: {"kind":"error","text":"Android resource linking failed","sources":[{"file":"/Users/thedventh/Documents/Builds/[AndroidProj]AlQolam-Mathkids/launcher/build/intermediates/packaged_manifests/debug/AndroidManifest.xml","position":{"startLine":36}}],"original":"/Users/thedventh/Documents/Builds/[AndroidProj]AlQolam-Mathkids/launcher/build/intermediates/packaged_manifests/debug/AndroidManifest.xml:37: AAPT: error: attribute android:extractNativeLibs not found.\n ","tool":"AAPT"}
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':launcher:processDebugResources'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
Android resource linking failed
/Users/thedventh/Documents/Builds/[AndroidProj]AlQolam-Mathkids/launcher/build/intermediates/packaged_manifests/debug/AndroidManifest.xml:37: AAPT: error: attribute android:extractNativeLibs not found.
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 1s
31 actionable tasks: 1 executed, 30 up-to-date
Any help or info are appreciated
thanks you

cannot find symbol DaggerAppComponent, Cause: java.lang.ExceptionInInitializerError

I was trying to build my Dagger2 based Android project in Android studio Arctic fox 2020.3.1 with Mac M1 and I got the error,
error: cannot find symbol
import xxxx.com.xxxx.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
which also was showing
Cause: java.lang.ExceptionInInitializerError
The same project was working in another machine(not mac).
Also I am unable to see the compiler error toggle button in android studio build output.
Please help me to resolve this.
complete build output,
Executing tasks: [:app:assembleDebug] in project /projects/Android/prototype
Task :app:preBuild UP-TO-DATE
Task :app:preDebugBuild UP-TO-DATE
Task :app:compileDebugAidl NO-SOURCE
Task :app:compileDebugRenderscript NO-SOURCE
Task :app:dataBindingMergeDependencyArtifactsDebug UP-TO-DATE
Task :app:dataBindingMergeGenClassesDebug UP-TO-DATE
Task :app:generateDebugResValues UP-TO-DATE
Task :app:generateDebugResources UP-TO-DATE
Task :app:injectCrashlyticsMappingFileIdDebug UP-TO-DATE
Task :app:processDebugGoogleServices UP-TO-DATE
Task :app:mergeDebugResources UP-TO-DATE
Task :app:dataBindingGenBaseClassesDebug UP-TO-DATE
Task :app:dataBindingTriggerDebug UP-TO-DATE
Task :app:generateDebugBuildConfig UP-TO-DATE
Task :app:javaPreCompileDebug UP-TO-DATE
Task :app:checkDebugAarMetadata UP-TO-DATE
Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
Task :app:extractDeepLinksDebug UP-TO-DATE
Task :app:processDebugMainManifest UP-TO-DATE
Task :app:processDebugManifest UP-TO-DATE
Task :app:processDebugManifestForPackage UP-TO-DATE
Task :app:processDebugResources UP-TO-DATE
Task :app:compileDebugJavaWithJavac FAILED
The following annotation processors are not incremental: dagger-android-processor-2.16.jar (com.google.dagger:dagger-android-processor:2.16), dagger-compiler-2.16.jar (com.google.dagger:dagger-compiler:2.16).
Make sure all annotation processors are incremental to improve your build speed.
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/provision/PairingActivity.java:22: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/provision/ProvisionActivity.java:41: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/splash/SplashActivity.java:20: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/appliance/AddApplianceActivity.java:15: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/appliance/event/AddEventActivity.java:8: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
/Users/sysadmin/Documents/projects/esp32/energy-monitor/Android/prototype/app/src/main/java/prototype/com/myapp/ui/welcome/WelcomeActivity.java:10: error: cannot find symbol
import prototype.com.myapp.di.DaggerAppComponent;
^
symbol: class DaggerAppComponent
location: package prototype.com.myapp.di
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
6 errors
Task :app:mergeDebugNativeDebugMetadata NO-SOURCE
Task :app:mergeDebugShaders UP-TO-DATE
Task :app:compileDebugShaders NO-SOURCE
Task :app:generateDebugAssets UP-TO-DATE
Task :app:mergeDebugAssets UP-TO-DATE
Task :app:compressDebugAssets UP-TO-DATE
Task :app:processDebugJavaRes NO-SOURCE
Task :app:checkDebugDuplicateClasses UP-TO-DATE
Task :app:desugarDebugFileDependencies UP-TO-DATE
Task :app:mergeExtDexDebug UP-TO-DATE
Task :app:mergeLibDexDebug UP-TO-DATE
Task :app:mergeDebugJniLibFolders UP-TO-DATE
Task :app:mergeDebugNativeLibs NO-SOURCE
Task :app:stripDebugDebugSymbols NO-SOURCE
Task :app:validateSigningDebug UP-TO-DATE
Task :app:writeDebugAppMetadata UP-TO-DATE
Task :app:writeDebugSigningConfigVersions UP-TO-DATE
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
java.lang.ExceptionInInitializerError
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/7.0.2/userguide/command_line_interface.html#sec:command_line_warnings
BUILD FAILED in 1s
29 actionable tasks: 1 executed, 28 up-to-date
I'd love to comment but I have not enough reputation, anyway, are you using room in your project? I had the same issue also only on my Mac M1, it was caused by the room version, I updated it to 2.4.0-alpha03 and it builds fine since then. if not, you may want to check the version of the libraries you are using, but yeah only on Mac M1, hope it helps.

Error while Generating Signed APK in android Studio

Information:Gradle tasks [:app:assembleRelease]
Observed package id 'add-ons;addon-google_apis-google-19' in inconsistent location 'E:\adt-bundle-windows-x86-20140702\sdk\add-ons\addon-google_apis-google-19-1' (Expected 'E:\adt-bundle-windows-x86-20140702\sdk\add-ons\addon-google_apis-google-19')
Observed package id 'add-ons;addon-google_gdk-google-19' in inconsistent location 'E:\adt-bundle-windows-x86-20140702\sdk\add-ons\addon-google_gdk-google-19-1' (Expected 'E:\adt-bundle-windows-x86-20140702\sdk\add-ons\addon-google_gdk-google-19')
Observed package id 'build-tools;20.0.0' in inconsistent location 'E:\adt-bundle-windows-x86-20140702\sdk\build-tools\android-4.4W' (Expected 'E:\adt-bundle-windows-x86-20140702\sdk\build-tools\20.0.0')
:app:preBuild UP-TO-DATE
:app:preReleaseBuild UP-TO-DATE
:app:checkReleaseManifest
:app:preDebugBuild UP-TO-DATE
:app:prepareComAndroidSupportAnimatedVectorDrawable2330Library UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72330Library UP-TO-DATE
:app:prepareComAndroidSupportCardviewV72330Library UP-TO-DATE
:app:prepareComAndroidSupportDesign2330Library UP-TO-DATE
:app:prepareComAndroidSupportRecyclerviewV72330Library UP-TO-DATE
:app:prepareComAndroidSupportSupportV42330Library UP-TO-DATE
:app:prepareComAndroidSupportSupportVectorDrawable2330Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesAds840Library UP-TO-DATE
:app:prepareComGoogleAndroidGmsPlayServicesBasement840Library UP-TO-DATE
:app:prepareReleaseDependencies
:app:compileReleaseAidl
:app:compileReleaseRenderscript
:app:generateReleaseBuildConfig
:app:mergeReleaseShaders
:app:compileReleaseShaders
:app:generateReleaseAssets
:app:mergeReleaseAssets
:app:generateReleaseResValues UP-TO-DATE
:app:generateReleaseResources
:app:mergeReleaseResources
:app:processReleaseManifest
:app:processReleaseResources
:app:generateReleaseSources
:app:incrementalReleaseJavaCompilationSafeguard
:app:compileReleaseJavaWithJavac
:app:compileReleaseJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:app:compileReleaseNdk UP-TO-DATE
:app:compileReleaseSources
:app:lintVitalRelease
:app:prePackageMarkerForRelease
:app:transformClassesWithDexForRelease
To run dex in process, the Gradle daemon needs a larger heap.
It currently has approximately 910 MB.
For faster builds, increase the maximum heap size for the Gradle daemon to more than 2048 MB.
To do this set org.gradle.jvmargs=-Xmx2048M in the project gradle.properties.
For more information see https://docs.gradle.org/current/userguide/build_environment.html
Error:Error converting bytecode to dex:
Cause: com.android.dex.DexException: Multiple dex files define Lcom/google/ads/AdRequest$ErrorCode;
:app:transformClassesWithDexForRelease FAILED
Error:Execution failed for task ':app:transformClassesWithDexForRelease'.
> com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_60\bin\java.exe'' finished with non-zero exit value 2

Trying to set up Android Studio on Ubuntu and running into problems

I'm going to be developing an app but when I build the default MainActivity (literally no modifications, just opened the project) in order to make sure everything is working correctly I get the following build error:
Information:Gradle tasks [clean,
:app:generateDebugSources,
:app:generateDebugAndroidTestSources,
:app:compileDebugSources,
:app:compileDebugAndroidTestSources]
:clean UP-TO-DATE
:app:clean
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72103Library
:app:prepareComAndroidSupportSupportV42103Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources
:app:mergeDebugResources
Error:org.gradle.process.internal.ExecException: A problem occurred starting process 'command '/home/cameron/Android/Sdk/build-tools/19.1.0/aapt''
:app:mergeDebugResources FAILED
Error:Execution failed for task ':app:mergeDebugResources'.
> Error: org.gradle.process.internal.ExecException: A problem occurred starting process 'command '/home/cameron/Android/Sdk/build-tools/19.1.0/aapt''
Information:BUILD FAILED
Information:Total time: 14.079 secs
Information:2 errors
Information:0 warnings
Information:See complete output in console
I know that this is most likely a problem with having the right things installed but I'm not sure what is not installed.

Android build failed - No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'

I created a new project in Android Studio and I'm trying to create my first activity which is supposed to allows users to login with facebook to my app. When I created the project, I got some errors (the ending part shown below)
:app:prepareComAndroidSupportSupportV42311Library UP-TO-DATE
:app:prepareDebugDependencies
:app:compileDebugAidl UP-TO-DATE
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources UP-TO-DATE
:app:mergeDebugResources UP-TO-DATE
:app:processDebugManifest UP-TO-DATE
:app:processDebugResources
D:\Loomius_Android\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.1\res\values-v23\values-v23.xml
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
Error:(1) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\srinivas\AppData\Local\Android\sdk\build-tools\22.0.1\aapt.exe'' finished with non-zero exit value 1
Information:BUILD FAILED
Information:Total time: 5.636 secs
Information:3 errors
Information:0 warnings
Information:See complete output in console
And this was at the end in the Gradle Console
:app:compileDebugRenderscript UP-TO-DATE
:app:generateDebugBuildConfig UP-TO-DATE
:app:generateDebugAssets UP-TO-DATE
:app:mergeDebugAssets UP-TO-DATE
:app:generateDebugResValues UP-TO-DATE
:app:generateDebugResources UP-TO-DATE
:app:mergeDebugResources UP-TO-DATE
:app:processDebugManifest UP-TO-DATE
:app:processDebugResources
AGPBI: {"kind":"ERROR","text":"Error retrieving parent for item: No resource found that matches the given name \u0027android:TextAppearance.Material.Widget.Button.Inverse\u0027.","sourcePath":"D:\\Loomius_Android\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml","position":{"startLine":1},"original":""}
AGPBI: {"kind":"ERROR","text":"Error retrieving parent for item: No resource found that matches the given name \u0027android:Widget.Material.Button.Colored\u0027.","sourcePath":"D:\\Loomius_Android\\app\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\23.1.1\\res\\values-v23\\values-v23.xml","position":{"startLine":1},"original":""}
FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\srinivas\AppData\Local\Android\sdk\build-tools\22.0.1\aapt.exe'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 5.636 secs

Categories

Resources