-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #431 from opensrp/fix-build
Fix local & CI builds
- Loading branch information
Showing
8 changed files
with
141 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/github.properties | ||
/captures | ||
*.ipr | ||
*.iws | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...java/org/smartregister/chw/core/activity/impl/FamilyOtherMemberActivityPresenterImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
package org.smartregister.chw.core.activity.impl; | ||
|
||
import android.content.Context; | ||
|
||
import org.smartregister.chw.core.contract.FamilyOtherMemberProfileExtendedContract; | ||
import org.smartregister.chw.core.interactor.CoreFamilyProfileInteractor; | ||
import org.smartregister.chw.core.presenter.CoreFamilyOtherMemberActivityPresenter; | ||
import org.smartregister.family.contract.FamilyOtherMemberContract; | ||
import org.smartregister.family.contract.FamilyProfileContract; | ||
|
||
public class FamilyOtherMemberActivityPresenterImpl extends CoreFamilyOtherMemberActivityPresenter { | ||
public FamilyOtherMemberActivityPresenterImpl(FamilyOtherMemberProfileExtendedContract.View view, FamilyOtherMemberContract.Model model, String viewConfigurationIdentifier, String familyBaseEntityId, String baseEntityId, String familyHead, String primaryCaregiver, String villageTown, String familyName) { | ||
super(view, model, viewConfigurationIdentifier, familyBaseEntityId, baseEntityId, familyHead, primaryCaregiver, villageTown, familyName); | ||
} | ||
|
||
@Override | ||
protected CoreFamilyProfileInteractor getFamilyProfileInteractor() { | ||
return null; | ||
} | ||
|
||
@Override | ||
protected FamilyProfileContract.Model getFamilyProfileModel(String familyName) { | ||
return null; | ||
} | ||
|
||
@Override | ||
protected void setProfileInteractor() { | ||
// Do nothing | ||
} | ||
|
||
@Override | ||
public void updateFamilyMember(Context context, String jsonString, boolean isIndependent) { | ||
// Do nothing | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters