Last active
August 29, 2015 14:05
-
-
Save emmaguy/36ef61c70982b11251b5 to your computer and use it in GitHub Desktop.
Debug builds (inc content provider) side by side with release
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildTypes { | |
debug{ | |
applicationIdSuffix ".debug" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<provider | |
android:name=".Provider" | |
android:authorities="${applicationId}.provider" | |
android:exported="false" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final String AUTHORITY = BuildConfig.PACKAGE_NAME + ".provider"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment