Skip to content

Early Access SDK

Str4tos edited this page Aug 20, 2024 · 14 revisions

Note

Please note that the new CAS 4.0.0-beta1 version is available as an early release and may have issues.

Integration

In addition to the lines described in the Add Maven repositories section, please add the beta maven repository to your settings.gradle file.

pluginManagement {  
    repositories {  
        mavenLocal()  
        mavenCentral()  
        google()  
        maven { url = "https://plugins.gradle.org/m2/" }  
        maven {  
            name = "CASBetaRepo"  
            url = "https://repsy.io/mvn/cleveradssolutions/beta"  
        }  
    }
}

dependencyResolutionManagement {  
    repositories {  
        ...
        maven {  
            name = "CASBetaRepo"  
            url = "https://repsy.io/mvn/cleveradssolutions/beta"  
            content { it.includeGroup("com.cleveradssolutions") }  
        }
    }
}

Note

pluginManagement.repositories can also be defined in the root-level build.gradle file within buildscript.repositories.

Continue with Plugin integration, using the beta version:

plugins {
    id("com.cleveradssolutions.gradle-plugin") version "4.0.0-beta1"
}

cas {
    ...
}

Changes

Coming soon...

Native Ad

Read more about new Native Ad format implementation.