All Projects → wordpress-mobile → EmailChecker

wordpress-mobile / EmailChecker

Licence: GPL-2.0, MIT licenses found Licenses found GPL-2.0 LICENSE-GPL MIT LICENSE-MIT
Email checking library for Android and iOS

Programming Languages

C++
36643 projects - #6 most used programming language
Objective-C++
1391 projects
ruby
36898 projects - #4 most used programming language
Makefile
30231 projects
java
68154 projects - #9 most used programming language
shell
77523 projects
objective c
16641 projects - #2 most used programming language

Email Checker for Android and iOS

Deprecated

This library is deprecated.

For Android please check out EmailChecker-Android

For iOS please check out EmailTypoChecker.swift

Introduction

This library helps to catch simple email domain typos. Its intended to be used as a hint when a user have to enter an email address.

The library is written in C++ and is inspired by the algorithm described here: http://norvig.com/spell-correct.html (Warning, it's not the exact same algo).

How to use it in an Android project

Currently gradle doesn't support NDK, so we used a trick to make it work: it generates a temporary .jar file containing .so, this file is used as a jar dependency for the final .aar file.

If you want to use it in your Android project, your can add it as a library in your build.gradle file, don't forget to add the wordpress-mobile maven repository. For instance:

repositories {
    maven { url 'http://wordpress-mobile.github.io/WordPress-Android' }
}

dependencies {
    // use the latest 0.x version
    compile 'org.wordpress:emailchecker:0.+'
}

Sample usage:

String emailToCheck = "[email protected]";
String suggest = (new EmailChecker()).suggestDomainCorrection(email);
if (suggest.compareTo(email) != 0) {
    Log.v("FIXME", "did you mean: " + suggest + " ?");
}

How to use it in an iOS project

If you use CocoaPods, you just have to add the following pod to your dependency list:

pod 'EmailChecker', :podspec => 'https://raw.github.com/wordpress-mobile/EmailChecker/master/ios/EmailChecker.podspec'

Sample usage:

NSString *emailToCheck = @"[email protected]";
NSString *suggestedEmail = [EmailChecker suggestDomainCorrection: @"[email protected]"];
if (![suggestedEmail isEqualToString:emailToCheck]) {
    NSLog(@"Did you mean: %@", suggestedEmail);
}

Hack it

Directory structure

|-- common                  # common C++ native code
|-- android
|   |-- jni                 # android specific C++ native code
|   `-- src                 # android specific Java code
`-- ios
    |-- EmailChecker        # iOS specific Obj-C++ code
    `-- EmailCheckerTests   # Obj-C++ tests (testing C++ code in common/)

The steps to add a new public method

  1. Create the public method in common/
  2. Wrap it as a Java jni method in android/jni and android/java
  3. Wrap it as a Obj-C++ method in ios/EmailChecker/

Build

  • For Android

    $ cd android && gradle build
    
  • For iOS

    $ cd ios && xcodebuild
    

LICENSE

This library is dual licensed unded MIT and GPL v2.

CHANGELOG

0.2

  • Failback to the identity function when native libraries can't be loaded (weird Android ROMs).
  • Update to gradle-android 0.8 and use gradle to build jni code

0.1

  • Initial release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].