Skip to content

Commit 5d6483a

Browse files
update testbed
1 parent af8dbb1 commit 5d6483a

File tree

7 files changed

+608
-22211
lines changed

7 files changed

+608
-22211
lines changed

android/src/main/java/io/branch/rnbranch/RNBranchModule.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,20 +1256,20 @@ public void setDMAParamsForEEA(boolean eeaRegion, boolean adPersonalizationConse
12561256
@ReactMethod
12571257
public void setConsumerProtectionAttributionLevel(String level) {
12581258
Branch branch = Branch.getInstance();
1259-
BranchAttributionLevel attributionLevel;
1259+
Defines.BranchAttributionLevel attributionLevel;
12601260

12611261
switch (level) {
12621262
case "FULL":
1263-
attributionLevel = BranchAttributionLevel.FULL;
1263+
attributionLevel = Defines.BranchAttributionLevel.FULL;
12641264
break;
12651265
case "REDUCED":
1266-
attributionLevel = BranchAttributionLevel.REDUCED;
1266+
attributionLevel = Defines.BranchAttributionLevel.REDUCED;
12671267
break;
12681268
case "MINIMAL":
1269-
attributionLevel = BranchAttributionLevel.MINIMAL;
1269+
attributionLevel = Defines.BranchAttributionLevel.MINIMAL;
12701270
break;
12711271
case "NONE":
1272-
attributionLevel = BranchAttributionLevel.NONE;
1272+
attributionLevel = Defines.BranchAttributionLevel.NONE;
12731273
break;
12741274
default:
12751275
Log.w(REACT_CLASS, "Invalid attribution level: " + level);

0 commit comments

Comments
 (0)