1<?xml version="1.0" encoding="UTF-8"?> 2<issues format="4" by="lint 3.0.0"> 3 4 <issue 5 id="AllowBackup" 6 message="On SDK version 23 and up, your app data will be automatically backed up and restored on app install. Consider adding the attribute `android:fullBackupContent` to specify an `@xml` resource which configures which files to backup. More info: https://developer.android.com/training/backup/autosyncapi.html" 7 errorLine1=" <application" 8 errorLine2=" ^"> 9 <location 10 file="src/main/AndroidManifest.xml" 11 line="19" 12 column="5"/> 13 </issue> 14 15 <issue 16 id="MissingApplicationIcon" 17 message="Should explicitly set `android:icon`, there is no default" 18 errorLine1=" <application" 19 errorLine2=" ^"> 20 <location 21 file="src/main/AndroidManifest.xml" 22 line="19" 23 column="5"/> 24 </issue> 25 26 <issue 27 id="GoogleAppIndexingWarning" 28 message="App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent filter. See issue explanation for more details." 29 errorLine1=" <application" 30 errorLine2=" ^"> 31 <location 32 file="src/main/AndroidManifest.xml" 33 line="19" 34 column="5"/> 35 </issue> 36 37 <issue 38 id="SetTextI18n" 39 message="Do not concatenate text displayed with `setText`. Use resource string with placeholders." 40 errorLine1=" ((TextView) (holder.itemView)).setText(customer.getId() + " " + customer.getLastName());" 41 errorLine2=" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~"> 42 <location 43 file="src/main/java/android/arch/persistence/room/integration/testapp/PagedListCustomerAdapter.java" 44 line="63" 45 column="52"/> 46 </issue> 47 48</issues> 49