**** BEGIN LOGGING AT Thu Dec 24 02:59:59 2015 Dec 24 03:21:02 Hey guys how come when I add a button to my CardView only the button can be clicked and not the card anymore? Dec 24 03:56:33 Hi guys Dec 24 03:56:57 Can we simulate drives and runs on the preview emulator ? Dec 24 04:41:30 is there any reason to use an ActionProvider these days, or is that technique obsolete Dec 24 05:18:45 http://pastebin.com/Vm52nteJ - does android:text have any prereq's. odd that it shows up as wrong although android:hint doesn't Dec 24 05:24:02 is it only because android prefers me using stuff in strings? Dec 24 05:29:43 and will android:text automatically use that text? aka default :/ Dec 24 05:52:28 impliednude: you can put basic types and serializable objects into prefs Dec 24 05:53:02 if you want to get string from prefs you need to do prefs.getString("you_key"); Dec 24 05:57:10 i dont get it Dec 24 05:57:22 why does none of the android tutorials have code that works? Dec 24 05:57:48 ne1 because none of the apps have code that works :D Dec 24 05:59:04 ne1 but seriously, tuts are out of date Dec 24 05:59:38 thx g00s Dec 24 06:04:01 g00s: yeah, so is facebook sdk documentations ;D Dec 24 06:04:04 *documentation Dec 24 06:04:37 i won't touch that :D Dec 24 06:05:15 yeah Dec 24 06:09:41 I was missing proguard... Dec 24 06:10:58 proguard? Dec 24 06:11:08 yes Dec 24 06:11:24 what that? Dec 24 06:11:29 oh wait i know that Dec 24 06:11:38 it is optimisation / debugging hel Dec 24 06:11:44 hell* Dec 24 06:11:52 yep Dec 24 06:18:27 hmmm gordon :/ Will give it a try ^_^ Dec 24 06:21:53 I like Android Dec 24 06:26:55 I like it but I don't love it on windows development with AS. I can't use buck at all >.< Dec 24 06:27:10 I am stuck with 8 minute builds >.< Dec 24 06:30:59 The one thing I find weird is that with android development, it's still so arcane you can't use ' by itself you have to proceed it with \ Dec 24 06:31:15 I can't use what ? Dec 24 06:32:23 apostrophe's in strings by itself. you have to do \' Dec 24 06:40:58 there are alternatives to buck that run just as fast Dec 24 06:41:03 faster even Dec 24 06:44:55 for windows pfn? Dec 24 06:45:00 like what? Dec 24 06:45:16 and how much of a learning curve is it? Dec 24 06:45:43 One of the project's I am working on right now was built with buck and gradle. I can't stand gradles build time but I don't always have access to a mac Dec 24 06:46:26 p.s. after I reinstalled from scratch AS on windows and redownloaded the repository my project worked great and I am a very happy camper ^_^ Dec 24 06:47:35 sbt. Dec 24 06:47:49 less learning curve than buck Dec 24 06:48:30 works anywhere java runs Dec 24 06:48:57 link? Dec 24 06:50:07 https://github.com/pfn/android-sdk-plugin/blob/master/GRADLE.md Dec 24 06:54:32 add protify to make it better Dec 24 06:55:16 pfn: you should advertise it more ;) Dec 24 06:57:33 Will check it out. Thanks! Dec 24 06:58:12 how much more so quick will it build? I generally spend 11-15 minutes rebuilding Dec 24 06:59:13 lol Dec 24 06:59:27 what is your PC ? Dec 24 06:59:39 * what pc do you have Dec 24 07:00:18 16GB, 1.3 quad. Dec 24 07:01:27 It's not bad. Runs embarcadero suite just fine. Just went with AS since this project requires it. and On my mac it compiles in under 2 minutes with buck Dec 24 07:01:48 1.3 ? Dec 24 07:01:52 slow Dec 24 07:02:50 Well. It's a pretty large project. but still. the mac's older than this and running buck only takes me 2 minutes for a fresh build Dec 24 07:03:07 impliednude: Is your project open source? I’d love to see if I can get it to build with Kobalt, especially if it’s a big app (which it appears to be) Dec 24 07:03:30 cbeust> modified heavily but it's wordpress-android Dec 24 07:03:52 What does that mean? Dec 24 07:04:34 cbeust> git > https://github.com/wordpress-mobile/WordPress-Android Dec 24 07:04:42 Cool, thanks Dec 24 07:05:08 impliednude: disable minifiaction (proguard) and for developemnt put minSdk to 21 Dec 24 07:05:46 gordon_> already done Dec 24 07:05:56 and 10 minutes ?! Dec 24 07:06:55 yep sadly. and like I said. its only 2 min on buck. and it's driving me crazy for when I just wanna sit down on my laptop in my warm bed and using my laptop Dec 24 07:07:11 erm repetitive. forgive me Dec 24 07:11:09 impliednude: get linux Dec 24 07:13:37 gordon_> I wouldn't be able to easily play ffxiv either / multitask Dec 24 07:15:31 lol Dec 24 07:18:12 nah, it works on linux too ;D Dec 24 07:20:12 Eh, nty. I prefer my apps native. Dec 24 07:26:56 gordon_, shush, I'm not talking to you Dec 24 07:52:31 pfn: haha, why ? :D Dec 24 07:53:07 I'm not against your project / idea, quite opposide - I would love if more people use it Dec 24 08:15:48 hi gang Dec 24 08:47:28 hi, do you guys know if android's Cursor class for sqlite precomputes the whole result set or is it a "real" cursor? Dec 24 08:47:39 maybe it precomputes only if I call getCount() for example Dec 24 09:04:51 For some reason the apk built via ./gradlew is bigger than the one by Android Studio Dec 24 09:05:14 is there a reason why this is happening? Dec 24 09:09:52 is it possible that i send some data with the get request as json object ? Dec 24 09:10:26 actually i need to check that if username exist or not. Dec 24 09:10:44 MohitKanwal, i don't know, but the apks are just zip files you can compare the contents to see if anything obvious pops out in terms of sizes/files Dec 24 09:11:46 canvs2321-: one obvious thing I found is that drawable-hdpi-v4 folder contains abc_** and google_play_services icons etc. Dec 24 09:12:00 which are missing in the Android Studio generated APK Dec 24 09:13:11 that's a start, has googling showed anything related to that issue? i'm not a gradle knower, i just let AS handle it. maybe gradle is getting different arguments using AS compared to manual Dec 24 09:14:14 For example common_google_signin_btn_icon_dark_pressed.9.png is present in drawable-hdpi-v4 in the command line generated one Dec 24 09:14:38 while AS only puts it under drawable-xhdpi-v4 Dec 24 09:14:45 so weird Dec 24 09:15:18 yea, sure it comes down to some argument used by gradle/proguard etc. some others may know your answer Dec 24 09:16:09 MohitKanwal: AS builds it for the target you selected when running Dec 24 09:16:50 SimonVT: thanks is there some docs etc. where this is available? Dec 24 09:17:08 I mistakenly submitted the one generated by AS to Google Play. :O Dec 24 09:17:14 I think I am f*cked Dec 24 09:18:04 I'm not sure, it was mentioned in one of the tools talks from android dev summit or google io or something Dec 24 09:18:10 got it Dec 24 09:18:21 Well, you're not really fucked Dec 24 09:18:28 Just build a new one and publish Dec 24 09:18:34 yep just did Dec 24 09:18:46 Drawables will just be scaled from xhdpi for people that got the AS apk Dec 24 09:19:02 true Dec 24 09:19:15 Slight performance hit for hdpi devices, doesn't look at good on xxhdpi devices Dec 24 09:19:18 I didn’t receive any crashes for resources etc. Dec 24 09:19:47 so yeah not a big deal but glad to know this didn’t know before, noting it down Dec 24 09:19:51 :) Dec 24 09:20:45 It's to speed up the time it takes to package and push the apk, unnecessary resources are ignored Dec 24 09:44:02 I was just wondering how do i compile android 6 for my new device? Dec 24 09:46:18 I want Demi Lovato to kiss me Dec 24 09:46:21 aindriu: a) this isn't the right channel for that, and b) unless your device is a nexus, you probably can't, officially Dec 24 09:46:44 why won't Demi Lovato make out with me? Dec 24 09:48:49 SimonVT: it moved to #android, if you didn't notice Dec 24 09:49:22 thanks :) Dec 24 09:49:27 ^_^ Dec 24 09:53:30 anyone up Dec 24 09:57:52 wondering if there's a way to differentiate between contactables from the addressbook or from gmail http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html Dec 24 09:58:23 I could query if a contactable has a phone number but I wanted to be able to notify the user if a contact is missing info (like a phone number) Dec 24 10:04:32 no idea Dec 24 10:04:33 ;) Dec 24 10:07:25 hello Dec 24 10:08:49 is it possible to override android system keyboard shortcut like ALT+TAB or COMMAND+L/O/L/C/E ? Dec 24 10:09:57 instead of doing what it supposed to do it exits the app and runs android calendar/settings or other app Dec 24 10:11:08 i dont think so Dec 24 10:18:44 ok is it for sure? Dec 24 10:18:52 is this somewhere documented? Dec 24 10:53:28 what would be the reason for SVN integration not showing merge, check-in etc on the VCS panel ? Dec 24 10:53:34 in android studio on mac Dec 24 11:15:33 Hey is it possible to have a custom view on a notification thats on the drop down list? The initial HeadsUp display I have sorted out but as soon as you drop down the menu the Icon just looks small and it has a huge gray circle around it Dec 24 11:28:26 cart_man: yes, and you can simple set the color of your notification to get rid of the gray Dec 24 11:29:09 cart_man: since Android 1.5 I think you've been able to set your own layouts on notifications Dec 24 11:29:43 Napalm: Ok but keep in mind that I am not talking about the initial Heads Up notification but the contents of the notirifcation when the bar is dragged down. Dec 24 11:29:53 yes Dec 24 11:30:29 Napalm: Soo could you give me an example of sorts maybe? Dec 24 11:30:35 cart_man: https://github.com/slightfoot/android-media-player-example/blob/master/app/src/main/java/com/dd/mediaplayerexample/MediaService.java#L163 Dec 24 11:30:38 Napalm: I tend to get the Initial one only Dec 24 11:30:45 line 163 Dec 24 11:31:09 bigContentView Dec 24 11:31:11 simple Dec 24 11:42:35 hello i have a problem building the signal app..... this is my first time building an app from source and im not too familiar with development... ive googled and came up with no results so i thought id ask in here... Dec 24 11:43:26 what is signal app Dec 24 11:43:49 whisper systems signal app for android Dec 24 11:43:52 textsecure Dec 24 11:44:05 http://imgur.com/jacoj Dec 24 11:45:32 Execution failed for task ':compileDebugUnitTestJava'. Dec 24 11:45:44 danijoo: that is my error Dec 24 11:46:27 thats not helpful Dec 24 11:47:47 manifest-merger-debug-report.txt manifest-merger-dev-report.txt manifest-merger-release-report.txt Dec 24 11:47:53 i have those reports in log Dec 24 11:48:00 which one would be helpful? Dec 24 11:48:00 Napalm: Yes that is fine for having a bigger text box. But my picture is not changing at all Dec 24 11:48:07 it prints more than that single line in the console Dec 24 11:48:28 is it possible to get http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.StructuredName.html#GIVEN_NAME from http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.Contactables.html ? Dec 24 11:48:32 source code is helpful too Dec 24 11:49:16 cart_man: picture? text box? dude, you can put any layout you like in there. Dec 24 11:50:05 Napalm: I did.. I have an entire layout. It does not take effect .. I will post code in a sec Dec 24 11:52:30 http://pastebin.com/LYifN6GC Dec 24 11:52:54 https://github.com/WhisperSystems/Signal-Android Dec 24 11:53:27 Napalm: -> http://pastebin.com/s7ytWuD3 Code and XML Dec 24 11:54:35 cart_man: where are you setting the bigContentView? Dec 24 11:54:38 danijoo: http://pastebin.com/LYifN6GC Dec 24 11:55:22 cart_man: you need to take the resulting Notification from notificationBuilder.build() like my example and set the bigContentView remoteViews if > JELLY_BEAN Dec 24 11:55:22 ghost-face1, theres nothing above that? Dec 24 11:55:33 hey there i am sening jsonobject to a link and retrieving its response only. i have done it successfully with curl but its giving me error when i am trying it from android app.http://paste.ubuntu.com/14191115/ Dec 24 11:56:37 here is the curl way : curl -H "Content-Type: application/json" -X GET -d '{"username" : "bilal"}' http://testapp-byteshaft.herokuapp.com/user/ Dec 24 11:56:50 any suggestions Dec 24 11:57:35 Napalm: Could you maybe take the notification setting part in my paste and edit it? Because I am a bit distorted as to what I am suppose to do. If I edit this line -> notificationManager.notify(HEADS_UP_NOTIFICATION_ID, notificationBuilder.build()); It breaks Dec 24 11:58:36 danijoo: http://pastebin.com/9aVfhcDV this is all i can copy.... you think you can help? Dec 24 11:58:52 s9iper1, see the imgur link in the title :p Dec 24 11:59:09 danijoo, haha Dec 24 11:59:13 cart_man: whats so hard? http://pastebin.com/3AAJ8Xa1 Dec 24 11:59:45 probably you want to wrap the second line in an if statement for Jelly Bean Dec 24 12:00:14 cart_man: http://pastebin.com/rB9buGdH Dec 24 12:00:29 danijoo, http://paste.ubuntu.com/14191161/ Dec 24 12:00:50 s9iper1, you cant send data with GET request Dec 24 12:00:54 you want to POST Dec 24 12:01:29 this is the api http://testapp-byteshaft.herokuapp.com/user/ Dec 24 12:01:30 danijoo, Dec 24 12:01:48 ghost-face1, no idea. sorry. it seems to cant find a class. maybe the source is broken, your your gradle doesnt load the imports Dec 24 12:01:56 s/imports/dependencies Dec 24 12:01:57 how am i getting it with curl ? danijoo Dec 24 12:02:24 s9iper1, maybe curl is not that strict about whats allowed and whats not Dec 24 12:02:33 but OKHttp sees you want to do a get request Dec 24 12:02:39 which does not send data by definition Dec 24 12:02:48 so it doesnt allow you to send a body Dec 24 12:03:06 ok Dec 24 12:03:08 right Dec 24 12:03:23 make it a POST Dec 24 12:03:52 thanks Dec 24 12:03:54 danijoo, Dec 24 12:04:31 Napalm: My notification.bigContentView does not seem to exist though... sugh Dec 24 12:04:38 Napalm: It just does not have that option Dec 24 12:04:45 cart_man: what version of the SDK are you compiling with? Dec 24 12:04:50 19 Dec 24 12:05:15 BUT I am using NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder() Dec 24 12:05:18 post your build gradle Dec 24 12:05:25 think that is probably the shit Dec 24 12:05:28 cart_man: so am I in my example.. Dec 24 12:05:34 cart_man: that doesnt matter Dec 24 12:05:46 Napalm: 1 sec Dec 24 12:05:46 Hello all, I'm having compiles issues. Something seems wrong with bionic/libc can someone check pastebin.com/870dNGMd Dec 24 12:06:39 Napalm: http://pastebin.com/WQ7735yn Dec 24 12:07:01 min 19 max 22 Dec 24 12:07:21 or just 19 min rather Dec 24 12:07:24 unrelated but you should set max to 23 Dec 24 12:07:41 danijoo: no he should not Dec 24 12:07:50 danijoo: Newest right? ok soo compileSdkVersion 23 Dec 24 12:07:59 danijoo: not unless he's resolved all his permission usage Dec 24 12:08:26 Napalm, obviously. Dec 24 12:08:30 cart_man: what error are you getting in Studio? Dec 24 12:08:48 danijoo: you say that, but I bet it wasnt obvious to him :P Dec 24 12:09:42 Napalm: error: cannot find symbol method bigContentView() ... its not even in the intellisense drop down box Dec 24 12:09:49 its not a function Dec 24 12:09:51 Napalm: Yea no it was not Dec 24 12:10:23 what's the exact returned type of your .build() Dec 24 12:10:42 android.app.Notification? Dec 24 12:12:15 Napalm: How do I see without going into the code ? in source it says -> IMPL.build(this, getExtender()); Dec 24 12:12:31 hover over the returned type Dec 24 12:13:41 ok my build for an app was successful... can anyone tell me where the apk is? Dec 24 12:14:22 Napalm: If I hover and press control I get the following Dec 24 12:14:29 ghost-face1, app/build/outputs/apk Dec 24 12:15:03 NotificationCompat.Builder Dec 24 12:15:10 danijoo: ok just making sure.. so its the -unsigned.apk? Dec 24 12:15:14 public notification build () Dec 24 12:15:22 ghost-face1, if you built it unsinged, yes Dec 24 12:15:59 danijoo: thanks for your help.. hope it installs this time Dec 24 12:22:14 it did not install... this might be a stupid comment but in the build.md file it says to use api22 but i am running android 4.2.2 Dec 24 12:23:02 my phone is 4.2.2 ... so do i have to use that api to build app? how would the build command distinguish the difference? Dec 24 12:24:18 ghost-face1, http://developer.android.com/tools/publishing/versioning.html#minsdkversion Dec 24 12:25:08 hey, I'm testing this method (http://www.tiemenschut.com/how-to-send-e-mail-directly-from-android-application/) executing in my lg g3 phone this (http://pastebin.com/PVp91QE0) and gettig this error (http://pastebin.com/6By5qbu2); I'm using Android Studio, does anyone know what could be wrong? Dec 24 12:26:19 danijoo: thanks...do you have a short answer? Dec 24 12:26:30 oh boy Dec 24 12:26:34 ghost-face1, thats the short one Dec 24 12:26:42 lol Dec 24 12:26:44 the long one is: read all the docs :p Dec 24 12:26:57 ghost-face1: just use minsdk at least your phone. 4.2.2 is 17 i think Dec 24 12:27:37 (the app might not work on your phone then) Dec 24 12:27:48 theres a reason the developer has set it to 22 in most cases Dec 24 12:28:35 yabuk: are you using javamail for android Dec 24 12:28:40 danijoo: ok .. i will need to do more research.. thanks Dec 24 12:28:44 ghost-face1, also its not set to 22 Dec 24 12:28:48 https://code.google.com/p/javamail-android/ Dec 24 12:28:50 i checked the source. min is set to 9 Dec 24 12:28:57 so it should work on your phone Dec 24 12:29:02 its only target thats set to 22 Dec 24 12:29:11 whats the install error? Dec 24 12:29:25 doesnt say just says cannot install Dec 24 12:29:41 but i havnt downloaded the sdk for 4.2.2 Dec 24 12:29:44 do you already have it installed? Dec 24 12:29:50 no Dec 24 12:30:25 yabuk: you should include additional.jar and activation.jar as well Dec 24 12:31:05 ghost-face1, you should install it from terminal with adb command Dec 24 12:31:13 then you get an error message why it cant install Dec 24 12:31:47 yabuk: also you could try something like this in i.e. activity's onCreate http://wklej.org/id/1885770/ if youll have trouble sending emails Dec 24 12:32:45 danijoo: Failure [INSTALL_PARSE_FAILED_UNEXPECTED_EXCEPTION] Dec 24 12:34:39 ghost-face1: first link in google ~ https://stackoverflow.com/questions/8799689/android-unable-to-install-release-build-onto-emulator-getting-failure-install Dec 24 12:37:20 Ashiren: thanks i am reading now Dec 24 12:43:25 Ashiren, thank you. I've added acntivation.jar / mail.jar but not additional.jar, I'm going try this now... Dec 24 13:03:50 Ashiren, I'd added additional.jar and that code in the mainActivity (tehre is just one activity in my simple test), but the error remains the same, do you have other suggestion? thx Dec 24 13:35:16 yabuk: in one of my old projects i have javax-mail-1.5.2.jar Dec 24 13:35:45 i know i had similar problem long time ago Dec 24 13:36:01 hello there, i want to add photos like this http://imgur.com/GVnLcX3 where user tap on the imgView and add image. Dec 24 13:48:20 Hello hardcore devs :) I have landscape area where I have a left framelayout and a right framelayout. What I want in a certain situation is to unplug the fragment from the right framelayout and plug the same fragment in the left framelayout. The problem doing this is, I get an error saying that I can't change container id of a fragment. How to handle this situation? Dec 24 13:52:33 Number5 show your code Dec 24 13:52:37 Number5: hard to diagnose without code Dec 24 13:53:16 If your Fragment takes arguments (using Bundles), you can simply instantiate your Fragment in the left framelayout using the args from the right framelayout Dec 24 13:55:51 Well, I haven't the code right with me, but I actually just do: ft.remove(fragmentX) and than put fragmentX in another framelayout container. I solved it by just creating an new Fragment instance but that's not what I actually wanted. Dec 24 13:57:02 What I understand of the error is once you put a fragment to a container, you can't change the container. Dec 24 13:58:00 So, if you have like container A and B and you put a fragment into container B, you can remove it from container B to put it to container A. Dec 24 13:58:14 s/can/can't Dec 24 14:05:49 so you can't remove, commit, add, commit? Dec 24 14:06:07 list Dec 24 14:07:55 Hello! I want to detect if other application call some android sdk methods. How can this be done? Dec 24 14:08:18 proxy, xposed, ...?? Dec 24 14:08:29 does anyone have suggestions? Dec 24 14:18:47 hm LeakCanary seems to not play well with JRebel.. Dec 24 14:18:59 not unexpected though Dec 24 14:29:30 danijoo: u r jrebel user? Dec 24 14:29:58 i thought that after AS 2 release we don't need jrebel Dec 24 14:32:45 xgearx, currently testing it Dec 24 14:32:59 instant run is still nearly unuseable. at least for me Dec 24 14:33:48 i understand Dec 24 14:34:01 but i thing they will fix it in release Dec 24 14:34:14 not my usecase Dec 24 14:34:27 instantrun doesnt work with kotlin right now Dec 24 14:34:40 and nobody knows if it ever will Dec 24 14:37:14 jrebel supports kotlin? interesting Dec 24 14:55:20 anybody use signal encryption app? Dec 24 15:16:20 i build an app from source , installattion finally went well, but says "this app wont run without google play services, which are missing from your phone" anyone know if theres a workaround to this? Dec 24 15:17:58 Modify the app to not use play services? Dec 24 15:18:20 It's not really a question we can answer for you :) Dec 24 15:23:18 Quick question: I just pushed an update that causes a crash on some phones. Is there any way to pull the update for people who haven't updated yet while I work on a fix? Dec 24 15:23:33 (published on Play store) Dec 24 15:23:47 pR0Ps: hm.... I don't think so. Dec 24 15:23:59 pR0Ps: But I am not an expert. Dec 24 15:24:03 can anyone point me to an easy to follow tutorial on using the new Android L animations? I am a bit of a beginner and all the tutorials I have found are confusing. Dec 24 15:25:45 pR0Ps, unless you did a staged rollout, no :/ Dec 24 15:27:12 noahmg123, Mavrik: blah, thanks, I guess I'll just push another update quickly and hopefully most people either haven't got the update yet or aren't affected. Dec 24 15:27:24 Note to self: use staged rollout next time... Dec 24 15:47:20 A known bug in Android 6.0 (API Level 23) causes user authentication-related authorizations to be enforced even for public keys. To work around this issue extract the public key material to use outside of Android Keystore. For example: Dec 24 15:47:21 lies Dec 24 15:47:34 as soon as I implement the workaround documented, I get illegalblocksizeexception Dec 24 15:51:31 Where is this documented? Dec 24 15:56:19 pR0Ps, for not critical updates its a good idea to make a staged rollout because of that Dec 24 15:56:48 you can then stop them immediatly if you realize something is wrong after a day or 2 Dec 24 16:05:41 https://code.google.com/p/android/issues/detail?id=197719 Dec 24 16:05:42 ugh Dec 24 16:10:58 * pfn kicks broke ass android crypto Dec 24 16:31:02 I have a listview and edittext inside of a dialog. When I focus the edittext to bring up the softkeyboard the dialog does not resize and instead just moves up blocking out the top half of the dialog Dec 24 16:31:08 what is the best way to handle this? Dec 24 16:47:38 pfn, we just ship Botan :/ Dec 24 16:49:54 Mavrik, yeah, except it doesn't work with the fingerprint sensor... Dec 24 16:50:11 :( Dec 24 16:51:15 fingerprint scanner = ultimate backdoor Dec 24 16:55:04 https://code.google.com/p/android/issues/detail?id=197719#c4 Dec 24 16:56:35 found a usable workaround Dec 24 17:11:41 can you have an AppBarLayout without a toolbar? (instead, TabLayout) Dec 24 17:22:48 anyone got a working setup of ActionBar with AppCompatActivity ? I get "requestFeature() must be called before adding content" if I call requestFeature() between super.onCreate() and setContentView(). and NPE when the order is requestFeature(), super.onCreate(), setContentView(). Dec 24 18:11:54 https://github.com/pfn/keepshare/blob/master/src/main/scala/com/hanhuy/android/keepshare/FingerprintManager.scala Dec 24 18:11:59 yay, my finger print support is fully working Dec 24 19:16:32 hi i want to do hotel finder application. is there any project like this that can helo me? Dec 24 19:16:36 *help Dec 24 19:20:36 you would need a database i guess Dec 24 19:29:59 Anyone know why when I add a button to a cardview, only the button is clickable and not the card Dec 24 19:31:03 How do i switch to an activity with singleTask launchMode & remove all other activities from history stack Dec 24 19:34:54 i get The selected device is incompatible. what should i do? Dec 24 19:35:41 Try a different device Dec 24 19:37:26 pfn, btw about your problem - do you have more devices to test on? Since that could easily be a device specific BS Dec 24 19:58:59 hi i want to do hotel finder application. is there any project like this that can help me? Dec 24 20:54:13 Mavrik, just the 6p, and it could be me misunderstanding oaep **** ENDING LOGGING AT Fri Dec 25 02:59:58 2015