Android Studio报错: Could not find pub.devrel:easypermissions:0.3.0, 改用linux编译

在Android studio中去编译开源的仓库,大概率就是各种编译不过,一堆错误,一顿改错,基本上会耗费非常多时间,比如:

这个就是改gradle版本,改成7.2 ,修改完成之后,还有其他报错:

Execution failed for task ':app:checkDebugDuplicateClasses'.

> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.

> Could not find pub.devrel:easypermissions:0.3.0.

Searched in the following locations:

Required by:

project :app

> Could not find com.danikula:videocache:2.7.0.

Searched in the following locations:

Required by:

project :app

主要原因还是因为国外仓库无法下载,可以使用国内仓库:

allprojects {

repositories {

google()

jcenter()

maven { url 'https://jitpack.io' }

maven { url "https://dl.bintray.com/thelasterstar/maven/" }

maven { url 'https://maven.aliyun.com/repository/google' }

maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }

}

}

最后还是报错, 所以换一种编译方法, 直接在linux系统中编译,当前使用的ubuntu18.04 X86

1, 下载源码

git clone https://gitee.com/xiaotaoge/AndroidCamera.git

2, 下载sdk

mkdir -p ~/sdk/cmdline-tools

cd ~/sdk/cmdline-tools

wget https://dl.google.com/android/repository/commandlinetools-linux-8512546_latest.zip

unzip commandlinetools-linux-8512546_latest.zip

mv cmdline-tools/ latest

cd ..

echo y | ./cmdline-tools/latest/bin/sdkmanager emulator

echo y | ./cmdline-tools/latest/bin/sdkmanager "platform-tools" "platforms;android-28"

3,设置环境android sdk的环境变量

export ANDROID_HOME=~/sdk

export PATH=~/sdk/cmdline-tools/latest/bin:/home/ctgcdt/sdk/platform-tools:$PATH

4,修改gradle地址,否则下载很慢

cd AndroidCamera/

vim gradle/wrapper/gradle-wrapper.properties

#Fri May 04 17:34:33 CST 2018

distributionBase=GRADLE_USER_HOME

distributionPath=wrapper/dists

zipStoreBase=GRADLE_USER_HOME

zipStorePath=wrapper/dists

distributionUrl=https\://mirrors.cloud.tencent.com/gradle/gradle-4.4-all.zip

5, 修改依赖仓库, 增加国内阿里仓库,否则很多依赖下载不了

修改文件: AndroidCamera$ vim build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {

repositories {

google()

jcenter()

maven { url "https://dl.bintray.com/thelasterstar/maven/" }

maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }

}

dependencies {

classpath 'com.android.tools.build:gradle:3.1.2'

// classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'

// NOTE: Do not place your application dependencies here; they belong

// in the individual module build.gradle files

}

}

allprojects {

repositories {

google()

jcenter()

maven { url 'https://jitpack.io' }

maven { url "https://dl.bintray.com/thelasterstar/maven/" }

maven { url 'https://maven.aliyun.com/repository/google' }
maven { url 'https://maven.aliyun.com/repository/jcenter' }
maven { url 'http://maven.aliyun.com/nexus/content/groups/public' }

}

}

task clean(type: Delete) {

delete rootProject.buildDir

}

~

6,编译

./gradlew

7,根据出错,下载对应sdk

sdkmanager "build-tools;27.0.3"

sdkmanager "platforms;android-27"

8,编译

./gradlew

./gradlew tasks

./gradlew assembleDebug

9, 报错

a, 无法下载EpMedia-v0.9.5.aar
https://jitpack.io/com/github/yangjie10930/EpMedia/v0.9.5/EpMedia-v0.9.5.aar

我是通过FQ解决。

9,最后生成apk

./app/build/outputs/apk/debug/app-debug.apk

相关推荐
HAPPY酷10 分钟前
【ROS2】16G 内存笔记本跑 ROS2 仿真?VMware 虚拟机“保姆级”配置指南 (R9 7940HX + RTX 4060)
java·linux·ide·windows·pycharm
私人珍藏库9 小时前
[Android] PeakFinder AR v4.8.89 (山峰全景识别+增强现实山峰查看器)
android·人工智能·智能手机·ar·工具·软件
researcher-Jiang9 小时前
高性能计算之OpenMP——超算习堂学习1
android·java·学习
alexhilton10 小时前
Kotlin DSL深度解析:从Gradle脚本到构建你自己的DSL
android·kotlin·android jetpack
烽火聊员10 小时前
查看Android Studio错误日志
android·ide·android studio
星空语16 小时前
音频001_Android+Linux车载/手机音频全链路分层架构图
android·linux·音视频
CyL_Cly16 小时前
解决官网下载慢!Android Studio 最新版网盘下载
android·ide·android studio
智塑未来16 小时前
鸿蒙系统对比安卓、iOS,核心优势是什么?
android·ios·harmonyos
AI刀刀16 小时前
豆包智能体对话导出后,如何构建长期归档与高效检索体系?
android·人工智能·word·excel·ai导出鸭
唠叨的蜜粉18 小时前
无需离开 Visual Studio 即可审阅拉取请求
ide·visual studio