From fd1dcfbf01d9f19390aaa92357e724af3df721fc Mon Sep 17 00:00:00 2001 From: reedniv <26852596+reedniv@users.noreply.github.com> Date: Thu, 24 Dec 2020 05:01:07 +0700 Subject: [PATCH 1/2] Create build.gradle --- build.gradle | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 build.gradle diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..c19902f --- /dev/null +++ b/build.gradle @@ -0,0 +1,48 @@ +/* + * Copyright (c) 2017 Francisco José Montiel Navarro. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + jcenter() + maven { + url "https://maven.google.com" + } + google() + } + dependencies { + classpath 'com.android.tools.build:gradle:3.5.3' + + classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + jcenter() + maven { + url "https://maven.google.com" + } + google() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +} From c85d673bf1cee63f37d0939196a79dc8cd38e2ef Mon Sep 17 00:00:00 2001 From: reedniv <26852596+reedniv@users.noreply.github.com> Date: Sun, 27 Dec 2020 19:20:21 +0700 Subject: [PATCH 2/2] Update build.gradle Remove License --- build.gradle | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/build.gradle b/build.gradle index c19902f..acd280d 100644 --- a/build.gradle +++ b/build.gradle @@ -1,19 +1,3 @@ -/* - * Copyright (c) 2017 Francisco José Montiel Navarro. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript {