-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
Ft/update gradle
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,23 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
/* | ||
buildscript { | ||
ext.kotlin_version = '1.6.0' | ||
ext.kotlin_version = '1.7.20' | ||
ext.flipper_version = '0.190.0' | ||
ext.soloader_version = '0.10.4' | ||
repositories { | ||
google() | ||
mavenCentral() | ||
|
||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:4.2.2' | ||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' | ||
// dependencies { | ||
// classpath 'com.android.tools.build:gradle:4.2.2' | ||
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" | ||
// 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 { | ||
google() | ||
mavenCentral() | ||
|
||
} | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} | ||
plugins { | ||
id 'com.android.application' version '8.0.1' apply false | ||
id 'com.android.library' version '8.0.1' apply false | ||
id 'org.jetbrains.kotlin.android' version '1.7.20' apply false | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.facebook"/> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
</manifest> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Thu Mar 25 11:35:17 WET 2021 | ||
#Wed May 31 15:41:50 JST 2023 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
pluginManagement { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
// rootProject.name = "flipper-android-no-op" | ||
include ':app', ':flipperandroidnoop', ':soloadernoop' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.plangrid.android.soloadernoop"> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
/ | ||
</manifest> |