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 { playstore {
manifest.srcFile "src/common/AndroidManifest.xml" manifest.srcFile "src/common/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/playstore/java','src/common/java'] java.srcDirs = ['src/main/java', 'src/playstore/java','src/common/java']
res.srcDirs = ['src/main/res', 'src/playstore/res','src/common/res']
} }
fdroid { fdroid {
manifest.srcFile "src/common/AndroidManifest.xml" manifest.srcFile "src/common/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/fdroid/java','src/common/java'] java.srcDirs = ['src/main/java', 'src/fdroid/java','src/common/java']
res.srcDirs = ['src/main/res', 'src/fdroid/res','src/common/res']
} }
lite { lite {
manifest.srcFile "src/main/AndroidManifest.xml" manifest.srcFile "src/main/AndroidManifest.xml"
java.srcDirs = ['src/main/java', 'src/lite/java'] 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; package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider /* Copyright 2020 Thomas Schneider
* *
* This file is a part of Fedilab * This file is a part of Fedilab

View File

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

View File

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

View File

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

View File

@ -1,4 +1,7 @@
package app.fedilab.android.jobs; package app.fedilab.android.jobs;
import app.fedilab.android.helper.Helper;
/* Copyright 2020 Thomas Schneider /* Copyright 2020 Thomas Schneider
* *
* This file is a part of Fedilab * 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, * You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */ * see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class LiveNotificationService extends BaseLiveNotificationService { public class LiveNotificationService extends BaseLiveNotificationService {
static { static {
Helper.installProvider(); 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, * You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */ * see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingFederatedTimelineService extends BaseStreamingFederatedTimelineService { public class StreamingFederatedTimelineService extends BaseStreamingFederatedTimelineService {
static { static {
Helper.installProvider(); 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, * You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */ * see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingHomeTimelineService extends BaseStreamingHomeTimelineService { public class StreamingHomeTimelineService extends BaseStreamingHomeTimelineService {
static { static {
Helper.installProvider(); 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, * You should have received a copy of the GNU General Public License along with Fedilab; if not,
* see <http://www.gnu.org/licenses>. */ * see <http://www.gnu.org/licenses>. */
import app.fedilab.android.helper.Helper;
public class StreamingLocalTimelineService extends BaseStreamingLocalTimelineService { public class StreamingLocalTimelineService extends BaseStreamingLocalTimelineService {
static { static {
Helper.installProvider(); Helper.installProvider();