lucassmn / apps-for-android

Automatically exported from code.google.com/p/apps-for-android
Apache License 2.0
0 stars 0 forks source link

WikiNotes gets a force close on search button with Android 1.5 #46

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Run WikiNotes on Android 1.5
2. Use search button (F5 on emulator or "search" key on G1 phone) 
3. Application stops unexpectedly.

What is the expected output? What do you see instead?
  Should get search field, instead program ends.

What version of the product are you using? On what operating system?
  WikiNotes from Market, Android 1.5

Please provide any additional information below.

I believe the cause of the problem is that in in searchable.xml, the 
searchSuggestAuthority does not match the provider in the manifest. It is:
android:searchSuggestAuthority="com.android.samples.SuggestionProvider"

The program will work correctedly is changed to:  
android:searchSuggestAuthority="com.google.android.wikinotes.db.wikinotes"

Original issue reported on code.google.com by bobjfrie...@gmail.com on 10 Aug 2009 at 1:34