1 package com.airbnb.lottie; 2 3 import android.os.Build; 4 5 public enum LottieFeatureFlag { 6 /** 7 * Merge paths currently don't work if the the operand shape is entirely contained within the 8 * first shape. If you need to cut out one shape from another shape, use an even-odd fill type 9 * instead of using merge paths. 10 */ 11 MergePathsApi19(Build.VERSION_CODES.KITKAT); 12 13 public final int minRequiredSdkVersion; 14 LottieFeatureFlag(int minRequiredSdkVersion)15 LottieFeatureFlag(int minRequiredSdkVersion) { 16 this.minRequiredSdkVersion = minRequiredSdkVersion; 17 } 18 } 19