wangsuicheng
wangsuicheng
DBFlow Version: 4.2 Desc: Some columns has unique annotation, how to remove it at next migration
``` return new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { wifiManager.startScan(); emitter.onNext(wifiManager.getScanResults()); } }; ``` BroadcastReceiver.onReceive always run in the UI thread, so getScanResults() and startScan still...
build release failed
using RxDnssdBindable(appContext) ``` in application oncreate: dnssd.browse(config.getRegType(), config.getDomain()) .compose(dnssd.resolve()) .compose(dnssd.queryRecords()) .subscribeOn(Schedulers.io()) .observeOn(AndroidSchedulers.mainThread()) ``` backtrace: #00 pc 00005580 /data/app/xxxxxx-2/lib/arm/libjdns_sd.so (Java_com_github_druk_dnssd_AppleService_BlockForData+99) #01 pc 000eb369 /system/lib/libart.so (art_quick_generic_jni_trampoline+40) #02 pc 00033573 /dev/ashmem/dalvik-jit-code-cache (deleted) (offset...
2020-11-21 19:01:05.454 2403-5825/AndroidRuntime: FATAL EXCEPTION: pool-16-thread-1 org.scribe.exceptions.OAuthConnectionException: There was a problem while creating a connection to the remote service. at org.scribe.model.Request.send(SourceFile:3) at org.scribe.oauth.OAuth10aServiceImpl.getRequestToken(SourceFile:10) at org.scribe.oauth.OAuth10aServiceImpl.getRequestToken(SourceFile:1) at org.scribe.oauth.OAuth10aServiceImpl.getRequestToken(SourceFile:2) at com.evernote.client.android.EvernoteOAuthHelper.createRequestToken(SourceFile:1) at...
parent.getSyncHttpClient().get(xxxxx), In Thread, i run a syncRequest to download the file, so how can i cancel this task??
Support it ?
``` { "rectangles": [ { "top": 442.25186, "left": 55.456326, "bottom": 452.30496, "right": 557.8718, "empty": false }, { "top": 451.08002, "left": 467.96002, "bottom": 451.08, "right": 467.96002, "empty": true }, { "top":...
Irregular cropping through irregular circle selection,can this kind of support be achieved?
``` private ConstraintLayout.LayoutParams setLayoutConstraint(ConstraintLayout.LayoutParams param, LayoutConfig config) { param.topToBottom = parseConstraintLayoutId(config.topToBottom); param.topToTop = parseConstraintLayoutId(config.topToTop); param.bottomToBottom = parseConstraintLayoutId(config.bottomToBottom); param.bottomToTop = parseConstraintLayoutId(config.bottomToTop); param.leftToLeft = parseConstraintLayoutId(config.leftToLeft); param.leftToRight = parseConstraintLayoutId(config.leftToRight); param.rightToLeft = parseConstraintLayoutId(config.rightToLeft); param.rightToRight...