android - ACRA not sending to eMail -


i trying send crash reports email when app crashes nothing happens. tried messing around configurations kept getting errors (unknown member mostly, wth is). here's code class.

    @reportscrashes(     mailto = "me@gmail.com") public class myapplication extends application {     @override     public void oncreate() {         super.oncreate();          // following line triggers initialization of acra         acra.init(this);     } } 

my manifest:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.ghostdevelopment.ueni2"     android:versioncode="1"     android:versionname="1.0"     android:debuggable="true">      <uses-permission android:name="android.permission.internet"></uses-permission>      <uses-sdk          android:minsdkversion="8"          android:targetsdkversion="25" />      <application         android:name="myapplication"         android:icon="@drawable/ic_launcher"         android:label="@string/app_name"         android:theme="@style/apptheme" >         <activity             android:label="@string/app_name"             android:name="com.ghostdevelopment.ueni2.mainactivity" >             <intent-filter >                 <action android:name="android.intent.action.main" />                  <category android:name="android.intent.category.launcher" />             </intent-filter>         </activity>         <activity             android:label="ship database"             android:name=".shipinfo" />     </application>  </manifest> 

according logcat appears app has not included acra library. need configure build acra included in apk.


Comments

Popular posts from this blog

javascript - Chart.js (Radar Chart) different scaleLineColor for each scaleLine -

apache - Error with PHP mail(): Multiple or malformed newlines found in additional_header -

java - Android – MapFragment overlay button shadow, just like MyLocation button -