arcgis for android 100.3 environment configuration and creation of graphic

At present, the latest version of ArcGIS for Android on the official website has been updated to 100.3. Today, use the latest version of sdk to create a map demo application, and use the API to configure the downloaded sdk. Note that you need to register a developer account for the sdk you downloaded. Download it in the followi ...

Posted by assafbe on Wed, 08 Jan 2020 08:03:07 -0800

A full understanding of Android unit testing

Preface To be a great Android developer, you need a complete Knowledge System Here, let's grow up as we want. == Complete project unit test learning case It is well known that a good project needs to be built over time, and some effective testing is a useful tool to speed up the process.This blog post will take you through and step by step into ...

Posted by devxtec on Tue, 07 Jan 2020 19:21:50 -0800

Step by step to teach you how to realize Alibaba's Sophix hot fix (I) configure Sophix information

1.0 integration preparation The gradle remote warehouse depends on. Open the project and find the build.gradle file of the app. Add the following configuration: Add maven warehouse address: repositories { maven { url "http://maven.aliyun.com/nexus/content/repositories/releases" } } Add grad ...

Posted by rohanm02 on Tue, 07 Jan 2020 04:55:49 -0800

Android uses Jenkins for continuous integration and automatic packaging

1, Using shell to package apk automatically Command to call gradlew under android project root directory to complete packaging Create a new Android build.sh command file, and the contents of the configuration file are as follows #!/bin/bash #The directory where the version.properties file is located path='/Users/mac/andro ...

Posted by xxxzom_biexxx on Mon, 06 Jan 2020 14:32:48 -0800

Do not rebuild all tables when upgrading GreenDao

The configuration of GreenDao is written in build.gradle as follows: greendao { schemaVersion 1 //Version of < -- database, used to make changes during upgrade daoPackage 'com.zhuyefeng.green.gen' //Package for storing auto generated code targetGenDir 'src/main/java' //... } GreenDao w ...

Posted by richtux on Mon, 06 Jan 2020 09:25:30 -0800

Easy to use Popupwindow by Kotlin

Summary XPopupWindow, which further encapsulates and strengthens the PopupWindow of the system for easy use. With Kotlin language, many additional functions are provided, such as setting the position of the pop-up window, adjusting the animation of the pop-up window and so on. Project address XPopupWindow preview C ...

Posted by Seraph on Sun, 05 Jan 2020 00:00:10 -0800

Using Baidu map api in Android

Preparatory work: before use, you need to apply for API Key on Baidu developer platform, which is not covered here. You can query the article by yourself. 1, Modify the AndroidManifest.xml file to add permissions and API keys. The following are permissions needed (the annotation part is because the project has been added befor ...

Posted by bcarlson on Sat, 04 Jan 2020 13:46:00 -0800

Android Studio released aar to Jcenter, plug-in could not be found

Reference resources: https://www.jianshu.com/p/5be222e98efc?from=jiantop.com / / used by gradle https://github.com/nuuneoi/JCenter/blob/master/installv1.gradle / / dependent on gradle location   Objectives: Previously, Android Studio released aar to Jcenter. For details, please refer to: https://blog.csdn.net/u014803950/ar ...

Posted by kruahsohr on Fri, 03 Jan 2020 13:53:29 -0800

windows command line view file tree structure

tree command Use the tree command on the command line of windows to print the file tree structure of the specified directory. PS E:\work> tree /? Graphically displays the folder structure of the drive or path. TREE [drive:][path] [/F] [/A] /F displays the name of the file in each folder. /A uses ASCII characters ins ...

Posted by MilesStandish on Wed, 01 Jan 2020 13:19:29 -0800

Android project practice (51): talking about green Dao

Well known database framework   Steps to use GreenDao:   1. Add dependency to build.gradle file in app directory compile 'org.greenrobot:greendao:3.2.0' Add plug-in at the top apply plugin: 'org.greenrobot.greendao'   2. Configuration of build.gradle file in root directory dependencies { classpath 'org.greenrobot:greendao-gradle ...

Posted by Solemn on Tue, 31 Dec 2019 23:47:03 -0800