Skip to content

Commit

Permalink
Merge pull request #1 from wickerlabs/behind-the-scenes
Browse files Browse the repository at this point in the history
Behind the scenes 1.09
  • Loading branch information
yusuphwickama committed Jan 27, 2017
2 parents 807a68e + 776eda7 commit 3b7b13d
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 10 deletions.
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

8 changes: 1 addition & 7 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion SampleApp/build.gradle
Expand Up @@ -24,5 +24,6 @@ dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile project(':logmanager')
//compile project(':logmanager')
compile 'com.github.wickerlabs:CallLogs:1+@aar'
}
Expand Up @@ -6,14 +6,19 @@
import android.net.Uri;
import android.provider.ContactsContract;

import com.wickerlabs.logmanager.interfaces.CallLogObject;

import java.text.DecimalFormat;

public class LogObject {
public class LogObject implements CallLogObject {
private String number;
private long date;
private int duration, type;
private Context context;

public LogObject() {
}

public LogObject(Context context) {
this.context = context;
}
Expand Down
@@ -0,0 +1,42 @@
/**************************************************************************************************
* Copyright (C) 2016 WickerLabs. inc - All Rights Reserved. *
* *
* NOTICE: All information contained herein is, and remains the property of WickerLabs, *
* The intellectual and technical concepts contained herein are proprietary to WickerLabs. *
* Dissemination of this information or reproduction of this material *
* is strictly forbidden unless prior permission is obtained from WickerLabs. inc *
* *
**************************************************************************************************/
package com.wickerlabs.logmanager.interfaces;

/**
* Created by: WickerLabs.Inc
* Project title: CallLogs
* Time: 10:06 AM
* Date: 1/27/2017
* Website: http://www.wickerlabs.com
*/

public interface CallLogObject {

String getNumber();

void setNumber(String number);

int getType();

void setType(int type);

long getDate();

void setDate(long date);

int getDuration();

void setDuration(int duration);

String getCoolDuration();

String getContactName();

}

0 comments on commit 3b7b13d

Please sign in to comment.