I have a library in my Android Studio project, RevealLayout, which I use to get an expanding animation from a FAB as explained in this post.
The library works, however the problem I am running into is that whenever I change anything in Gradle, such as adding repository, and it rebuilds, the file AndroidManifest.xml
under `libs\FabReveal\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.1is regenerated, causing the
android:minSdkVersion` to be set to 7.
This causes an error in the build until I change the value and rebuild. Which sticks until the next time I change Gradle or reopen Android Studio.
What do I need to do to change this value permanently?