X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserAndroid.git;a=blobdiff_plain;f=build.gradle;h=61cd5d44fbe39f8bb6b96914e6c88aa1f46de8b4;hp=c6f2f5009ec4294c7f78dba3d21f2f1bb6e72095;hb=c5359b173d559fc154bf7e4bd8fd65c951c529b3;hpb=348acd7bd2c9ba9638ff87b34df4e7501214ca27 diff --git a/build.gradle b/build.gradle index c6f2f500..61cd5d44 100644 --- a/build.gradle +++ b/build.gradle @@ -1,11 +1,33 @@ +/* + * Copyright 2016-2023 Soren Stoutner . + * + * This file is part of Privacy Browser Android . + * + * Privacy Browser Android is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * Privacy Browser Android is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with Privacy Browser Android. If not, see . + */ + // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { - jcenter() + google() + mavenCentral() } + dependencies { - classpath 'com.android.tools.build:gradle:2.3.0' + classpath 'com.android.tools.build:gradle:7.4.2' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -14,6 +36,7 @@ buildscript { allprojects { repositories { - jcenter() + google() + mavenCentral() } }