adams2
12/07/2017, 7:23 PMspragg
12/08/2017, 3:06 AMbudioktaviyan
12/08/2017, 3:09 AM--- adb starting (pid 1161) ---
adb I 12-08 10:04:50 1161 9192 main.cpp:57] Android Debug Bridge version 1.0.39
adb I 12-08 10:04:50 1161 9192 main.cpp:57] Version 27.0.0-4455170
adb I 12-08 10:04:50 1161 9192 main.cpp:57] Installed as /Users/mymac/Library/Android/sdk/platform-tools/adb
adb I 12-08 10:04:50 1161 9192 main.cpp:57]
adb I 12-08 10:04:50 1161 9192 adb_auth_host.cpp:416] adb_auth_init...
adb I 12-08 10:04:50 1161 9192 adb_auth_host.cpp:174] read_key_file '/Users/mymac/.android/adbkey'...
adb F 12-08 10:04:50 1161 9204 transport_usb.cpp:37] Check failed: usb_packet_size < 4096ULL (usb_packet_size=5120, 4096ULL=4096)
Johnny
12/08/2017, 12:58 PMr4zzz4k
12/08/2017, 7:19 PM@Table
should have default value, but your value2
field doesn't have one. Maybe this is the issue?
Also, https://agrosner.gitbooks.io/dbflow/content/KotlinSupport.html doesn't mention the need of no-arg
or anything, so you should be able to skip that suggestion.jw
12/09/2017, 1:45 AMrkeazor
12/11/2017, 1:07 AMSlackbot
12/11/2017, 11:23 AMadam-mcneilly
12/11/2017, 3:24 PMvitrox1
12/11/2017, 4:35 PMramonsgds
12/12/2017, 2:20 AMSlackbot
12/12/2017, 5:55 AMJason
12/12/2017, 8:48 AMrajendhiraneasu
12/12/2017, 2:00 PMshebsa
12/12/2017, 2:49 PMjava.lang.NullPointerException
at com.example.testGetAdsSuccessfully(SavedSearchAdListViewModelTest.kt:64)
shebsa
12/12/2017, 2:50 PMurs-vj
12/12/2017, 6:21 PMquock
12/13/2017, 7:05 AMSlackbot
12/13/2017, 1:38 PMontherunvaro
12/14/2017, 12:51 PMCharles
12/14/2017, 2:29 PMSam Woodall
12/14/2017, 3:31 PMFragmentPagerAdapter
when overriding setPrimaryItem()
after updating the support library to version 27.0.0. The signature changed from setPrimaryItem(container: ViewGroup, position: Int, obj: Any?)
to setPrimaryItem(container: ViewGroup, position: Int, obj: Any)
. It's causing an illegal argument exception because obj is null.fejd
12/14/2017, 3:58 PMedwardwongtl
12/15/2017, 4:21 AMlist.map { it.id }
nil2l
12/15/2017, 12:15 PMstantronic
12/16/2017, 9:29 PMObservable.defer { Observable.just(dataManager.saveRecipes(list)) }.subscribeOn(<http://Schedulers.io|Schedulers.io>())
arekolek
12/16/2017, 11:08 PMpublic class DataViewModel {
private MutableLiveData<String> data = new MutableLiveData<>();
public LiveData<String> getData() {
return data;
}
}
in Kotlin without resorting to having a backing property?
class DataViewModel {
private val _data = MutableLiveData<String>()
val data: LiveData<String> get() = _data
}
yuriy.stetsyk
12/17/2017, 12:31 PMfradiati
12/18/2017, 11:40 AMcarmelo.iriti
12/18/2017, 2:14 PMcarmelo.iriti
12/18/2017, 2:14 PMAlexander Khyzhun
12/18/2017, 2:19 PMsindrenm
12/18/2017, 2:23 PMcarmelo.iriti
12/18/2017, 2:48 PMradityagumay
12/20/2017, 1:46 AM