Open supriysh opened 2 years ago
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:7.0.3' classpath 'com.google.gms:google-services:3.2.1'
} }
allprojects { repositories { maven { url 'http://maven.stickerpipe.com/artifactory/stickerfactory' allowInsecureProtocol = true } jcenter() maven { url "https://jitpack.io/" } google() maven { url "https://github.com/QuickBlox/quickblox-android-sdk-releases/raw/master/" } maven { url 'https://maven.google.com/' } } }
task clean(type: Delete) { delete rootProject.buildDir }
i added a allowInsecureProtocol = true for allow a repo in a project
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { repositories { jcenter() google() } dependencies { classpath 'com.android.tools.build:gradle:7.0.3' classpath 'com.google.gms:google-services:3.2.1'
}
allprojects { repositories { maven { url 'http://maven.stickerpipe.com/artifactory/stickerfactory' } jcenter() maven { url "https://jitpack.io" } google() maven { url "https://github.com/QuickBlox/quickblox-android-sdk-releases/raw/master/" } maven { url 'https://maven.google.com' } } }
task clean(type: Delete) { delete rootProject.buildDir }