Note that there are some explanatory texts on larger screens.

plurals
  1. POCreating java packages for Android projects
    primarykey
    data
    text
    <p>I created multiple packages to better structure our Android-based project. After creating these packages, the application no longer runs. It's a widget application. I noticed that the application manifest needed to be modified and did so. This didn't seem to fix the problem. I don't get any error messages, I'm simply not able to open the main activity page from the application widget. Could anyone tell me how to resolve this issue? </p> <p>For more detail, I initially had a flat project structure (com.domain.A). Now I have the following:</p> <p>com.domain.Activities</p> <ul> <li>Activity1.java </li> <li>Activity2.java</li> </ul> <p>com.domain.Features</p> <ul> <li>Feature1.java </li> <li>Feature2.java</li> </ul> <p>com.domain.Services</p> <ul> <li>Service_1.java</li> <li>Service_2.java</li> </ul> <p>etc...</p> <p>Here's an excerpt from the manifest file:</p> <pre><code> &lt;activity android:name="com.domain.Activities.Activity1" android:theme="@style/Theme.D1" android:label="@string/act1" /&gt; &lt;activity android:name="com.domain.Activities.Activity2" android:theme="@style/Theme.D1" android:label="@string/act2" /&gt; &lt;activity android:name="com.domain.Features.Feature1" android:theme="@style/Theme.D1" android:label="@string/fea1" /&gt; &lt;activity android:name="com.domain.Features.Feature2" android:theme="@style/Theme.D1" android:label="@string/fea2" /&gt; &lt;service android:name="com.cmu.Services.Service_1"/&gt; &lt;service android:name="com.cmu.Services.Service_2"/&gt; </code></pre> <p>Thanks.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload