Fix res dir

This commit is contained in:
Thomas 2020-07-14 17:44:40 +02:00
parent 222e9c2251
commit 9edc0448fc
10 changed files with 26 additions and 0 deletions

View File

@ -59,15 +59,18 @@ android {
playstore {
manifest.srcFile "src/common/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/playstore/java','src/common/java']
res.srcDirs = ['src/main/res', 'src/playstore/res','src/common/res']
}
fdroid {
manifest.srcFile "src/common/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/fdroid/java','src/common/java']
res.srcDirs = ['src/main/res', 'src/fdroid/res','src/common/res']
}
lite {
manifest.srcFile "src/main/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/lite/java']
res.srcDirs = ['src/main/res', 'src/lite/res']
}
}

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider
*
* This file is a part of Fedilab

View File

@ -14,6 +14,8 @@ package app.fedilab.android.services;
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class LiveNotificationService extends BaseLiveNotificationService {
static {
Helper.installProvider();

View File

@ -14,6 +14,8 @@ package app.fedilab.android.services;
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingFederatedTimelineService extends BaseStreamingFederatedTimelineService {
static {
Helper.installProvider();

View File

@ -14,6 +14,8 @@ package app.fedilab.android.services;
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingHomeTimelineService extends BaseStreamingHomeTimelineService {
static {
Helper.installProvider();

View File

@ -14,6 +14,8 @@ package app.fedilab.android.services;
* You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingLocalTimelineService extends BaseStreamingLocalTimelineService {
static {
Helper.installProvider();