Skip to content

Commit 5c3f7ef

Browse files
authored
Add build setting to generate IDL classes for FDL and transport-runtime (#5891)
1 parent c700552 commit 5c3f7ef

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

firebase-dynamic-links/firebase-dynamic-links.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ android {
2828
timeOutInMs 60 * 1000
2929
}
3030

31+
buildFeatures {
32+
aidl true
33+
}
34+
3135
namespace "com.google.firebase.dynamiclinks"
3236
compileSdkVersion project.compileSdkVersion
3337
defaultConfig {

subprojects.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ firebase-database
2828
# firebase-database:ktx
2929
firebase-database-collection
3030
firebase-datatransport
31-
# firebase-dynamic-links
31+
firebase-dynamic-links
3232
# firebase-dynamic-links:ktx
3333
firebase-firestore
3434
# firebase-firestore:ktx

transport/transport-runtime/transport-runtime.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,9 @@ android {
8989
testOptions.unitTests {
9090
includeAndroidResources = true
9191
}
92+
buildFeatures {
93+
aidl true
94+
}
9295
}
9396

9497
thirdPartyLicenses {

0 commit comments

Comments
 (0)