dragas
01/25/2017, 8:44 AMonActivityResult
?miha-x64
01/28/2017, 8:49 PMClass not found: com.package.Class. Empty test suite.
Android Studio, why?
Some of details. Trying to test Java Library module in AS which depends ob another Java Library and another library's test-scope classes. Java tests work. Why?enighma
02/01/2017, 8:35 PMBefore launch
for your run config.elect
02/02/2017, 7:55 PMmg6maciej
02/03/2017, 9:42 PMjan.rabe
02/10/2017, 9:15 AM@Parcel(Parcel.Serialization.BEAN)
data class MyClass(val value)
kevinmost
02/13/2017, 10:03 PMfrank
02/14/2017, 6:05 PMnitrog42
02/15/2017, 3:19 PMmarcinmoskala
02/15/2017, 5:40 PMrobin
02/16/2017, 1:55 PMmingkangpan
02/17/2017, 12:12 PMbernhard
02/17/2017, 12:20 PMmingkangpan
02/17/2017, 12:31 PMorogersilva
02/17/2017, 12:40 PMnawar
02/19/2017, 3:03 PMbrianwernick
02/20/2017, 3:35 PMcedric
02/20/2017, 4:01 PMnebojsa.vuksic
02/21/2017, 10:24 PMrwachol
02/22/2017, 9:21 AM@BeforeClass
in test
@BeforeClass
public static void setUp() throws Exception {
RxIdlingResource rxIdlingResource = new RxIdlingResource();
Espresso.registerIdlingResources(rxIdlingResource);
RxJavaPlugins.setScheduleHandler(rxIdlingResource);
}
eatbears
02/22/2017, 11:48 AMkirillrakhman
02/23/2017, 10:40 AMrwachol
02/24/2017, 1:20 PMjw
02/25/2017, 2:52 AMkoufa
02/26/2017, 5:35 PMmg6maciej
02/27/2017, 6:02 PMuhe
03/01/2017, 4:47 PM73ms :app:mergeDevDebugResources
53ms :app:processDevDebugManifest
28678ms :app:kaptDevDebugKotlin
1812ms :app:compileDevDebugKotlin
7043ms :app:compileDevDebugJavaWithJavac
1479ms :app:copyDevDebugKotlinClasses
8729ms :app:transformClassesAndResourcesWithProguardForDevDebug
4255ms :app:transformClassesWithDexForDevDebug
1828ms :app:packageDevDebug
while annotation processing is cool in principle the performance hit really hurts 😕bryan
03/02/2017, 6:50 AM1.1
slower/laggier in AS than 1.0.6
? Or am I just imagining things? Like typing laggy, autocomplete takes forever. If you enter bad syntax the IDE become unresponsive for several seconds.okaymak
03/02/2017, 11:38 AMazabost
03/02/2017, 12:23 PMazabost
03/02/2017, 12:23 PMdeviant
03/02/2017, 12:52 PMazabost
03/02/2017, 12:59 PMlovis
03/02/2017, 1:05 PMMarc
03/02/2017, 1:17 PMazabost
03/02/2017, 1:41 PMlovis
03/02/2017, 3:28 PMkapt “com.android.databinding:compiler:2.3.0-rc1"
⬅️ important to use the correct databinding compiler versionbuild
folder when upgrading android studio and or kotlin 😂Marc
03/02/2017, 3:34 PMlovis
03/02/2017, 3:35 PM2.3
Kotlin-AS-Plugin: 1.1.0-release-Studio2.3-1
Kotlin 1.1.0
apply plugin: ‘kotlin-kapt’
…
kapt “com.android.databinding:compiler:$plugin_version”
kapt “com.google.dagger:dagger-compiler:$dagger_version”
kapt “com.jakewharton:butterknife:$butterknife_version”
where
plugin_version = "2.3.0"
dagger_version = "2.2"
butterknife_version = "7.0.1"
kotlin_version = "1.1.0"
oh yeah and
task wrapper(type: Wrapper) {
gradleVersion = '3.3'
}
bryan
03/02/2017, 5:29 PMaoriani
03/02/2017, 6:15 PMExecution failed for task ':app:compileDevDebugAndroidTestJavaWithJavac'.
> java.lang.RuntimeException: Failed to parse data binding compiler options. Params:
kapt.annotations : /Users/aoriani/Development/myapp/app/build/tmp/kapt/devDebugAndroidTest/wrappers/annotations.devDebugAndroidTest.txt
kapt.kotlin.generated : /Users/aoriani/Development/myapp/app/build/tmp/kapt/devDebugAndroidTest/kotlinGenerated
lovis
03/03/2017, 8:36 AMapply plugin: ‘kotlin-kapt’
aoriani
03/03/2017, 9:51 AMMarc
03/03/2017, 10:53 AMkalpeshp0310
03/03/2017, 10:55 AMazabost
03/03/2017, 12:45 PM