This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.android.build.gradle.AppExtension | |
import com.android.build.gradle.AppPlugin | |
import com.android.build.gradle.BaseExtension | |
import com.android.build.gradle.LibraryPlugin | |
import org.gradle.api.Plugin | |
import org.gradle.api.Project | |
class MercariAndroidPlugin : Plugin<Project> { | |
override fun apply(project: Project) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
org.gradle.api.ProjectConfigurationException: A problem occurred configuring project ':app'. | |
at org.gradle.configuration.project.LifecycleProjectEvaluator.wrapException(LifecycleProjectEvaluator.java:79) | |
at org.gradle.configuration.project.LifecycleProjectEvaluator.addConfigurationFailure(LifecycleProjectEvaluator.java:72) | |
at org.gradle.configuration.project.LifecycleProjectEvaluator.access$600(LifecycleProjectEvaluator.java:53) | |
at org.gradle.configuration.project.LifecycleProjectEvaluator$NotifyAfterEvaluate.run(LifecycleProjectEvaluator.java:198) | |
at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:402) | |
at org.gradle.internal.operations.DefaultBuildOperationExecutor$RunnableBuildOperationWorker.execute(DefaultBuildOperationExecutor.java:394) | |
at org.gradle.internal.operations.DefaultBuildOperationExecutor$1.execute(DefaultBuildOperationExecutor.java:165) | |
at org.gr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# | |
# kscript on demand (inspired by gradlew). | |
# | |
# Convenient way to run Kotlin scripts (.kts) without having to install kscript | |
# relying on https://github.com/holgerbrandl/homebrew-tap/blob/master/kscript.rb logic. | |
# | |
# Requirements: curl and kscript requirements (KOTLIN_HOME or kotlin in path) | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.android.build.gradle | |
import com.android.build.gradle.api.ApplicationVariant | |
import com.android.build.gradle.api.BaseVariant | |
import com.android.build.gradle.api.BaseVariantOutput | |
import com.android.build.gradle.internal.ExtraModelInfo | |
import com.android.build.gradle.internal.dependency.SourceSetManager | |
import com.android.build.gradle.internal.dsl.BuildType | |
import com.android.build.gradle.internal.dsl.ProductFlavor | |
import com.android.build.gradle.internal.dsl.SigningConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🍏 ➜ git push mirror studio-master-dev | |
Alias tip: gp mirror studio-master-dev | |
Enumerating objects: 407011, done. | |
Counting objects: 100% (391280/391280), done. | |
Delta compression using up to 8 threads | |
Compressing objects: 100% (79384/79384), done. | |
Writing objects: 100% (389441/389441), 1.10 GiB | 3.51 MiB/s, done. | |
Total 389441 (delta 205818), reused 376062 (delta 195538) | |
remote: Resolving deltas: 100% (205818/205818), completed with 881 local objects. | |
remote: Checking connectivity: 389441, done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
import socket | |
import struct | |
import sys | |
import traceback | |
# see com.intellij.idea.SocketLock for the server side of this interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>detekt report</title> | |
<style> | |
h2 { | |
background-color: #666666; | |
padding: 0.2em; | |
color: #ffffff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install sdkman | |
curl -s https://get.sdkman.io | bash # 2s | |
source "$HOME/.sdkman/bin/sdkman-init.sh" | |
# Install kotlin and kscript | |
sdk install kotlin # 10s ... | |
sdk install kscript # 6s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gradle/android-studio-paths.sh b/gradle/android-studio-paths.sh | |
new file mode 100644 | |
index 0000000..ae3d1e0 | |
--- /dev/null | |
+++ b/gradle/android-studio-paths.sh | |
@@ -0,0 +1,51 @@ | |
+# | |
+# In order to avoid "Daemon could not be reused" when using command line and Android Studio, | |
+# this is forcing the JAVA_HOME by looking at common places for Android Studio installations. | |
+# |