I went into the file and removed this line of code, built again and the line auto repopulates. How can I fix this?
I can provide any additional information
=========================================================================
SOLVED
SOLUTION AS OF JULY 14TH 2017
are you building a development build ? also, this may not be the real cause of failure. please attach the full error message you’re getting from gradle.
stderr[ …/Temp/gradleOut/src/main/AndroidManifest.xml:6: Error: Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one [HardcodedDebugMode]
Explanation for issues of type “HardcodedDebugMode”: It’s best to leave out the android:debuggable attribute from the manifest. If you do, then the tools will automatically insert android:debuggable=true when building an APK to debug on an emulator or device. And when you perform a release build, such as Exporting APK, it will automatically set it to false.
If on the other hand you specify a specific value in the manifest file, then the tools will always use it. This can lead to accidentally publishing your app with debug information.
1 errors, 0 warnings
FAILURE: Build failed with an exception.
What went wrong: Execution failed for task ‘:transformClassesWithDexForRelease’.
Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. ] stdout[ Incremental java compilation is an incubating feature. :preBuild UP-TO-DATE . . :transformClassesWithDexForRelease FAILED
This is indeed the rest of the error. I’ve been ale to gradle build more than a few times, when I add in Fabric(twitter) I receive this error. Any idea on how to correct?