android studio configuration ffmpeg
1) copy the compiled so library to the libs folder, and the header file in include to the libs folder.
2) add the following code to build.gradle
defaultConfig {
applicationId "com.houde.ffmpeg.test"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrument ...
Posted by gozbay.com on Wed, 13 Nov 2019 12:25:44 -0800
Development efficiency optimization of automatic construction system Gradle Part 1
Alibaba P7 mobile Internet architect advanced video (in daily update) for free, please click: https://space.bilibili.com/474380680
This article will introduce the automatic build system Gradle as follows:
The relationship between gradle and android gradle plug-in
Basic use of the Gradle Transform API
I. The relationship between gradle and and ...
Posted by bdurham on Wed, 13 Nov 2019 02:42:54 -0800
Elastic search source code analysis - source code construction
This article introduces how to build Elasticsearch from source code. Building Elasticsearch source code is the basis of learning and studying Elasticsearch source code, which helps to better understand Elasticsearch.
Environmental preparation
Environment / software
Edition
Remarks
OS
Ubuntu 14.04 LTS
Gradl ...
Posted by Magicman0022 on Tue, 05 Nov 2019 11:51:35 -0800
About the use of config.gradle
Last night, I read this article and mentioned config.gradle, such a configuration, so today I found a DEMO to try, record and summarize it.
This diagram is a directory structure
config.gradle--project
ext {
android = [
compileSdkVersion: 28,
buildToolsVersion: "28 ...
Posted by maya28 on Thu, 31 Oct 2019 08:50:07 -0700
Do you know all four points of Android Navigation?
In JetPack, there is a component called Navigation. As the name implies, it is a page Navigation component. Compared with other third-party Navigation, the difference is that it is specially designed for Fragment page management. It is very useful for the App of a single Activity, because the presentation of App pages based on an Activity is d ...
Posted by immobilarity on Mon, 28 Oct 2019 05:08:46 -0700
ES source road: source local compilation start
ES source road (1): source local compilation and startup
First of all, let's talk about ES:
ElasticSearch is based on Lucene Search server for. It provides a distributed multi-user full-text search engine based on RESTful web interface. Elasticsearch is developed in Java language and released as op ...
Posted by bradles on Sun, 27 Oct 2019 20:28:49 -0700
Gradle custom plug in
Use version 5.6.2
Plug-ins are used to encapsulate the build logic and some common configurations. Encapsulate reusable build logic and default conventions into plug-ins for use by other projects.
You can use your favorite language to develop plug-ins, but in the end it's compiled into bytecode to run in the JVM.
Gradle has two plug-ins, scr ...
Posted by grilldan on Thu, 24 Oct 2019 06:49:40 -0700
"Netty learning to punch -- from beginners to giving up" -- 18 - netty's grpc Bidirectional Streaming RPC example
Punch date (July 18, 2019)
Learning points
-Using grpc to complete Bidirectional Streaming RPC example
step
1. Configure grpc dependency package
2. Write proto file
3. Generate java classes with gradle generateProto
4. Write Server/Client serviceNote: the Server is only responsible for startup, ...
Posted by art15 on Tue, 22 Oct 2019 13:53:13 -0700
"Netty learning to clock in -- from beginners to giving up" -- grpc Server Streaming Rpc example of 16 - netty
Punch date (July 18, 2019)
Learning points
-Using grpc to complete Server Streaming Rpc example
step
1. Configure grpc dependency package
2. Write proto file
3. Generate java classes with gradle generateProto
4. Write Server/Client serviceNote: the Server is only responsible for startup, so the ...
Posted by akjackson1 on Tue, 22 Oct 2019 08:55:05 -0700
Simple implementation of Aurora push in Android
Configuration of Aurora push environment for Android
Register APP KEY
Android Studio configuration
Register APP KEY
First of all, we register for the account on the official website of Aurora push to enter the developer service.
Click to create app
The second step:
Define the name of the applica ...
Posted by Xanthis on Mon, 21 Oct 2019 10:22:43 -0700