啥也不说,百度一下,代码先搞起来 一、项目搭建 这里我使用的是 gradle 来构建项目的,spring boot 项目的搭建话这里就不做说明,如果还不会的自行学习。 compile 'org.springframework.boot:spring-boot-starter-security' 二、 ...
分类:
编程语言 时间:
2020-07-10 21:09:12
阅读次数:
53
用Android studio导入一个项目时,可以会报Add Google Maven repository and sync project有可能的解决方法如下:在项目的build.gradle中修改如下: buildscript { repositories { maven{ url 'http ...
分类:
其他好文 时间:
2020-07-10 19:08:47
阅读次数:
159
看看效果图吧 然后看代码吧,为了方便大家,所有资源文件都是用系统自带的,所以可以直接copy build.gradle 文件添加 // 注意,对应得也必须是28 compileSdkVersion 28 implementation 'com.android.support:recyclerview ...
分类:
其他好文 时间:
2020-07-10 17:14:53
阅读次数:
72
1. 启用 Hermes 引擎后,打包时在 Android Studio中 遇到 SoLoader: couldn't find DSO to load: libhermes.so result: 0 解决方法:在 /android/app/build.gradle 中加入如下配置 configur ...
分类:
其他好文 时间:
2020-07-10 13:23:17
阅读次数:
87
| 关键字 | 描述 | | script | 由 Runner 执行的 Shell 脚本 | | image | 使用的 docker 映像。也可用: `image:name` 和 `image:entrypoint` | | services | 使用的 docker 服务映像。也可用:`ser ...
分类:
其他好文 时间:
2020-07-09 22:36:29
阅读次数:
64
1、使用主机安装查看runner配置 $ cat /etc/gitlab-runner/config.toml [session_server](区段是一个系统 Runner 级别的配置,因此它应该在根级别指定,而不是在每个执行器上,也就是说,它应该在[[runners]]区段之外。会话服务器允许用 ...
分类:
其他好文 时间:
2020-07-09 00:52:34
阅读次数:
56
1、配置文件 (1)dependencies dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' } gradle工程所有的jar包都放置在dependencies内部 每一个jar包的坐标都有三个基本元 ...
分类:
Web程序 时间:
2020-07-09 00:49:20
阅读次数:
172
恢复内容开始 首先我使用apt安装gradle,并从源码构建. apt-get install gradle gradle 异常: * What went wrong: A problem occurred evaluating script. > Could not find property ' ...
分类:
其他好文 时间:
2020-07-08 14:56:44
阅读次数:
100
在生产环境中强制使用https,但在调试模式下允许使用明文的方法 它仅在api 23+上使用 在build.gradle中: // Put this in your buildtypes debug section: manifestPlaceholders = [usesCleartextTraf ...
分类:
移动开发 时间:
2020-07-07 20:03:07
阅读次数:
128
首先启动 IntelliJ IDEA,然后选择 File > Open 在弹出的界面中,选择你要导入的项目的文件夹。 如果是 Gradle 项目的话,你的 Gradle 项目应该会有一个 build.gradle 文件。 选择这个文件,然后选择 OK 后就可以了。 https://www.ossez ...
分类:
其他好文 时间:
2020-07-07 09:34:54
阅读次数:
53