We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f501d20 commit cc4b64bCopy full SHA for cc4b64b
auth/build.gradle
@@ -15,9 +15,15 @@ android {
15
16
buildTypes {
17
release {
18
+ manifestPlaceholders = [enableFbLogging: true]
19
+
20
minifyEnabled false
21
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
22
}
23
24
+ debug {
25
+ manifestPlaceholders = [enableFbLogging: false]
26
+ }
27
28
29
testOptions {
auth/src/main/AndroidManifest.xml
@@ -21,7 +21,7 @@
<meta-data
android:name="com.facebook.sdk.AutoLogAppEventsEnabled"
- android:value="false"/>
+ android:value="${enableFbLogging}"/>
<activity
android:name=".KickoffActivity"
0 commit comments