Android Flutter hybrid development of high imitation large factory App

From the first part Summary of App and tips accumulation of flutter's 10 day high imitation large factory This time, we are full of dry goods. This article will outline the building of Android component architecture and how to mix the development of Flutter and Android (only the first page of the whole App is completed with native Android, and ...

Added by prashanth on Fri, 19 Jun 2020 06:12:56 +0300

Nexus 3.x creates a private repository and uploads jar packages using gradle

1, Create private warehouse 1. Open the Nexus homepage and log in, enter the setting interface, and click create 2. Select maven2 hosted warehouse 3. Enter the name of the created warehouse. If repeated deployment is allowed, you can change the Disable redeploy below to Allow Redeploy 2, Add private warehouse to Ma ...

Added by capella07 on Sun, 03 May 2020 16:28:12 +0300

Gradle's article is enough for 05 - Multi engineering builds

Multi engineering construction Maven realizes the combination of multiple modules by using modules. In Gradle, it can be realized by aggregating multiple project s. This article mainly introduces the specific usage. Multi engineering structure Create a three-tier structure as follows graph TD helloProject --> subProjectA helloProject ...

Added by jdnet on Mon, 06 Apr 2020 06:39:36 +0300

Android camera, picture library for pictures

In your APP, you often get pictures from your mobile camera and gallery. The encapsulation method here is convenient for you. It solves the acquisition method of Android 7.0 resource uri. It is compatible with machines above SDK19, and has the authority to request integration. Welcome to use it off the shelf, and comment and gu ...

Added by Amanda1998 on Sun, 05 Apr 2020 10:13:17 +0300

Notes on learning Spring source code -- it is not difficult to download and compile Spring source code

Prerequisite preparation: JDK8+ IDEA Maven Download the source code: Visit the official website of spring.io, then go to Projects, click the kitten in the upper right corner, and download the Spring source code from Github! Choose a RELEASE version, I choose the RELEASE version of 5.2, choose ...

Added by maniac1aw on Sat, 14 Mar 2020 03:43:45 +0200

ShareSDK MOB third party sharing including tiktok sharing

MobSDK { appKey "888888888888888888" appSecret "888888888888888888" ShareSDK { //Platform configuration information devInfo { SinaWeibo { appKey "888888888888888888" appSecret "888888888888888888" callbackUri &q ...

Added by warpoet on Tue, 10 Mar 2020 10:40:30 +0200

Let's teach you how to use ProtoBuf to make network requests on Android through gRPC service

ProtoBuf-gRPC-Android Teach you how to use ProtoBuf to make network requests on android through gRPC service. If you are interested, please click Project address See it! brief introduction ProtoBuf >Google published a set of open source coding rules, based on the binary stream serialization transmission, which can be converted into a variety ...

Added by Zeradin on Tue, 25 Feb 2020 15:06:29 +0200

Binder basic use

In Android development, Binder is a way of cross process communication, and using AIDL can realize Binder's work. How to use it is the first step to understand it. This article mainly records some steps of using Binder. (refer to "Android development art exploration" by Ren Yugang for code ideas) 1. Create two activities Two activitie ...

Added by steveryan on Wed, 05 Feb 2020 11:00:15 +0200

Android Panorama Advertising Access Tutorial

Panorama Advertising Access Tutorial I believe everyone has met the need to add advertising in the app. Most of the way is to add advertising on the open page to attract users to click and jump.There are many advertisements on the market at present. Today we will introduce the simple integrated access ...

Added by gmcalp on Thu, 16 Jan 2020 04:26:49 +0200

Learning micro service to serve consumers - Feign

In addition to restTemplate+ribbon, there is another way to call between microservices: Feign 1. Create a feign service build.gradle file buildscript { ext { springBootVersion = '2.0.4.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion ...

Added by irishdreaming on Sun, 05 Jan 2020 06:27:40 +0200