@@ -32,16 +32,20 @@ public CldVideoPlayer(Context context, URL url) {
3232 }
3333
3434 public CldVideoPlayer (Context context , String publicId ) {
35- initiliaze (context , publicId , null , true );
35+ initiliaze (context , publicId , null , false );
3636 }
3737 public CldVideoPlayer (Context context , String publicId , Transformation transformation ) {
38- initiliaze (context , publicId , transformation , true );
38+ initiliaze (context , publicId , transformation , false );
3939 }
4040
4141 public CldVideoPlayer (Context context , String publicId , Transformation transformation , Boolean automaticStreamingProfile ) {
4242 initiliaze (context , publicId , transformation , automaticStreamingProfile );
4343 }
4444
45+ public CldVideoPlayer (Context context , String publicId , Boolean automaticStreamingProfile ) {
46+ initiliaze (context , publicId , null , automaticStreamingProfile );
47+ }
48+
4549 private void initiliaze (Context context , String publicId , Transformation transformation , Boolean automaticStreamingProfile ) {
4650 MediaManager .get ().getCloudinary ().analytics .setFeatureFlag ("F" );
4751 if (automaticStreamingProfile && transformation == null ) {
0 commit comments