Android开发遇见的问题-kotlin
程序员文章站
2022-04-17 08:59:03
新建项目时报错:unable to find valid certification path to requested target这个问题应该是和版本相关的我的AndroidStudio 版本是3.5.3,build.gradle中这样修改。// Top-level build file where you can add configuration options common to all sub-projects/modules.buildscript { ext.kotli...
- 新建项目时报错:unable to find valid certification path to requested target
这个问题应该是和版本相关的我的AndroidStudio 版本是3.5.3,build.gradle中这样修改。// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.3.50' repositories { // google() // jcenter() mavenCentral() maven { url 'https://maven.google.com' } google() jcenter() maven { url "https://jitpack.io" } } dependencies { classpath 'com.android.tools.build:gradle:3.5.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files· } } allprojects { repositories { // google() // jcenter() mavenCentral() maven { url 'https://maven.google.com' } google() jcenter() maven { url "https://jitpack.io" } } } task clean(type: Delete) { delete rootProject.buildDir }
本文地址:https://blog.csdn.net/weixin_42415553/article/details/109646129
上一篇: ThinkPHP5底层代码逻辑梳理
推荐阅读
-
Android开发中常用的jQuery:AQuery简介
-
详解C#开发Android应用程序的流程
-
vuejs开发组件分享之H5图片上传、压缩及拍照旋转的问题处理
-
asp.net开发与web标准的冲突问题的一些常见解决方法
-
Android通讯录开发之删除功能的实现方法
-
android开发教程之ubuntu使用adb连接小米2的步骤和adb调试方法
-
android开发教程之android的handler使用方法
-
TextVie获取显示字符串的宽度之Android开发
-
android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
-
android开发教程之卸载sd卡对MediaServer的处理