Removed comment to send user to BoardActivity if there is an existing account

This commit is contained in:
Severiano Jaramillo 2018-03-13 17:32:06 -06:00
parent 32a3f306af
commit 0dd2afd47d
2 changed files with 4 additions and 3 deletions

View file

@ -58,7 +58,8 @@
android:name=".service.CrystalWalletService" android:name=".service.CrystalWalletService"
android:exported="false" /> android:exported="false" />
<activity android:name=".activities.CreateContactActivity"></activity> <activity android:name=".activities.CreateContactActivity">
</activity>
</application> </application>
</manifest> </manifest>

View file

@ -80,7 +80,7 @@ public class IntroActivity extends AppCompatActivity {
//Checks if the user has any seed created //Checks if the user has any seed created
/*AccountSeedListViewModel accountSeedListViewModel = ViewModelProviders.of(this).get(AccountSeedListViewModel.class); AccountSeedListViewModel accountSeedListViewModel = ViewModelProviders.of(this).get(AccountSeedListViewModel.class);
if (accountSeedListViewModel.accountSeedsCount() == 0){ if (accountSeedListViewModel.accountSeedsCount() == 0){
//If the user doesn't have any seeds created, then //If the user doesn't have any seeds created, then
@ -93,7 +93,7 @@ public class IntroActivity extends AppCompatActivity {
//Intent intent = new Intent(this, CreateSeedActivity.class); //Intent intent = new Intent(this, CreateSeedActivity.class);
Intent intent = new Intent(this, BoardActivity.class); Intent intent = new Intent(this, BoardActivity.class);
startActivity(intent); startActivity(intent);
}*/ }
/*CrystalDatabase db = CrystalDatabase.getAppDatabase(getApplicationContext()); /*CrystalDatabase db = CrystalDatabase.getAppDatabase(getApplicationContext());
List<AccountSeed> seeds = RandomSeedGenerator.generateSeeds(2); List<AccountSeed> seeds = RandomSeedGenerator.generateSeeds(2);